-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 926 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 926 Bytes
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
{
"name": "node-with-typescript-express",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"ts": "tsc -w",
"server": "nodemon ./build/index.js",
"start": "tsc && node ./build/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Radhey Shyam",
"license": "ISC",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.18.3",
"compression": "1.7.2",
"cookie-parser": "1.4.3",
"cors": "2.8.4",
"dotenv": "6.0.0",
"express": "4.16.3",
"helmet": "3.12.1",
"mongoose": "5.0.0-rc1",
"morgan": "1.9.0"
},
"devDependencies": {
"@types/body-parser": "1.17.0",
"@types/cookie-parser": "1.4.1",
"@types/cors": "2.8.4",
"@types/express": "4.16.0",
"@types/mongoose": "5.0.15",
"@types/node": "8.5.5",
"nodemon": "1.17.5",
"tslint": "5.10.0",
"typescript": "2.9.1"
}
}