-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.26 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
{
"name": "typescript-express-server",
"version": "1.0.0",
"main": "./build/index.js",
"license": "MIT",
"scripts": {
"build": "node node_modules/webpack/bin/webpack.js --config config/webpack.config.js",
"postinstall": "node node_modules/typings/dist/bin.js install --overwrite",
"start-dev": "nodemon build/compiled.js",
"start": "node node_modules/webpack/bin/webpack.js --config config/webpack.config.js && node node_modules/typings/dist/bin.js install --overwrite && node build/compiled.js"
},
"dependencies": {
"@cli-engine/engine": "^6.3.3",
"@types/node": "^8.0.4",
"app-root-path": "^2.0.1",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "1.18.2",
"cli-engine": "^4.7.5",
"compression": "1.7.1",
"cookie-parser": "1.4.3",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "4.16.2",
"helmet": "3.9.0",
"lodash": "4.17.4",
"mongoose": "5.0.0-rc1",
"morgan": "1.9.0",
"path": "^0.12.7"
},
"devDependencies": {
"@types/cors": "^2.8.4",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^23.0.1",
"superagent": "^3.8.3",
"supertest": "^3.1.0",
"ts-loader": "^2.0.2",
"typescript": "^2.2.1",
"typings": "^1.5.0",
"webpack": "^2.2.1"
}
}