-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.44 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.44 KB
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
{
"name": "express-app",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./dist/server.js",
"app": "nodemon & webpack --watch --config ./webpack/webpack.config.js",
"test": "export NODE_ENV=test && cd src && jasmine-ts",
"prod": "export NODE_ENV=production && webpack -d --config ./webpack/webpack.config.js && npm start"
},
"dependencies": {
"@types/jasmine": "^2.5.51",
"body-parser": "^1.17.1",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.6",
"express": "^4.15.2",
"express-session": "^1.15.3",
"morgan": "^1.8.1",
"mysql2": "^1.3.3",
"pg-hstore": "^2.3.2",
"sequelize": "^4.0.0",
"serve-favicon": "^2.4.1",
"session-memory-store": "^0.2.2",
"winston": "^2.3.1"
},
"devDependencies": {
"@types/body-parser": "1.16.1",
"@types/cookie-parser": "^1.3.30",
"@types/ejs": "^2.3.33",
"@types/express": "^4.0.35",
"@types/jasmine": "^2.5.51",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.10",
"@types/serve-favicon": "^2.2.28",
"awesome-typescript-loader": "^3.1.3",
"babel-polyfill": "^6.23.0",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"jasmine": "^2.6.0",
"jasmine-core": "^2.6.3",
"jasmine-ts": "^0.1.3",
"tslint": "^5.2.0",
"tslint-react": "^3.0.0",
"typescript": "^2.3.2",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^2.5.1"
}
}