-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.88 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
51
52
53
54
55
56
57
58
59
{
"name": "express",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "webpack --config build/webpack.terminal.config.js ",
"start": "npm run build && node dist_bundle/terminal-bundle.js",
"test": "webpack --config build_webpack/tests/webpack.terminal.test.config.js && mocha --exit --timeout 10000 dist_bundle/terminal-mocha-bundle.js --reporter mochawesome && npm run show_mocha_report",
"aggregator": "npm run build && AGGREGATOR=true node ./build/dist/main.js",
"webpack": "npm run build && webpack && node ./build/webpack.bundle.js"
},
"dependencies": {
"babel-plugin-module-alias": "^1.6.0",
"babel-plugin-relative-import": "^1.0.3",
"babel-polyfill": "^6.26.0",
"bcrypt": "^1.0.2",
"body-parser": "~1.17.1",
"console-error": "0.0.4",
"console-info": "0.0.5",
"console-warn": "0.0.4",
"cookie-parser": "~1.4.3",
"cors": "^2.8.3",
"debug": "~2.6.3",
"es2017": "0.0.0",
"express": "~4.15.2",
"file-type": "^6.1.0",
"hat": "0.0.3",
"htmltidy2": "^0.2.1",
"image-type": "^3.0.0",
"jade": "~1.11.0",
"jsonwebtoken": "^7.4.1",
"md5": "^2.2.1",
"mongoose": "^4.11.1",
"morgan": "~1.8.1",
"multer": "^1.3.0",
"node-metainspector": "^1.3.0",
"nohm": "^0.9.8",
"redis": "^2.7.1",
"request-promise": "^4.2.1",
"run-middleware": "^0.6.6",
"sanitize-html": "^1.14.1",
"serve-favicon": "~2.4.2",
"socket.io": "1.x",
"striptags": "^3.0.1",
"xregexp": "^3.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"extract-text-webpack-plugin": "^3.0.2",
"friendly-errors-webpack-plugin": "^1.6.1",
"webpack": "^2.5.1",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-merge": "^4.1.2",
"webpack-node-externals": "^1.6.0"
}
}