This repository has been archived by the owner on Nov 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
50 lines (50 loc) · 1.95 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "markdown-knowledge-base",
"version": "0.0.1",
"dependencies": {
"Package": "0.0.1",
"bcrypt-nodejs": "0.0.3",
"cheerio": "^1.0.0-rc.2",
"connect-mongo": "^2.0.3",
"consolidate": "^0.15.1",
"cookie-parser": "^1.4.4",
"directory-tree": "^2.2.1",
"express": "^4.16.4",
"express-session": "^1.15.6",
"find-in-files": "^0.5.0",
"mkdirp": "^0.5.1",
"mongoose": "^5.4.22",
"morgan": "^1.9.1",
"mustache": "^3.0.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"remove-markdown": "^0.3.0"
},
"private": true,
"devDependencies": {
"@types/cheerio": "^0.22.11",
"@types/express": "^4.16.1",
"@types/mongoose": "^5.3.24",
"@types/passport": "^1.0.0",
"babel-preset-env": "^1.7.0",
"babel-cli": "^6.26.0",
"node-sass": "^4.11.0",
"babel-register": "^6.26.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0"
},
"scripts": {
"sass:kotlin-website-markdown": "node-sass --include-path sass --output-style compressed lib/scss/markdown/styles.scss lib/public/markdown-site/markdown/css/styles.css",
"sass:materialize": "node-sass --include-path sass --output-style compressed lib/scss/materialize/materialize.scss lib/public/markdown-site/materialize/css/materialize.css",
"sass:site": "node-sass --include-path sass --output-style compressed lib/scss/site/styles.sass lib/public/markdown-site/site/css/styles.css",
"build": "cp -rf dist/views/pages/* lib/views/pages 2>/dev/null || : && rm -rf dist && babel lib --ignore lib/public --out-dir dist --source-maps",
"copystatic": "cp -rf lib/views dist/views && cp -rf lib/public dist/public",
"start": "node dist/app.js",
"rebuild": "npm run build && npm run copystatic",
"rebuildstart": "npm run rebuild && npm run start"
}
}