-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1014 Bytes
/
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
{
"name": "node-express-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "mkdir dist && cp readme.md dist && cp data.json dist && tsc",
"build:watch": "concurrently \"cpx \"**/*.{md,json}\" dist\" \"tsc --watch\"",
"start": "node dist/index.js",
"start:watch": "cd dist && nodemon --watch index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "1.17.0",
"@types/cors": "2.8.4",
"@types/express": "4.16.0",
"@types/joi": "13.4.2",
"@types/marked": "0.4.0",
"@types/node": "10.5.8",
"@types/node-uuid": "0.0.28",
"@types/ws": "5.1.2",
"concurrently": "^3.6.1",
"cpx": "1.5.0",
"nodemon": "1.18.3",
"tslint": "5.11.0",
"typescript": "3.0.1"
},
"dependencies": {
"body-parser": "1.18.3",
"cors": "2.8.4",
"express": "4.16.3",
"express-ws": "4.0.0",
"joi": "13.6.0",
"marked": "0.4.0",
"node-uuid": "1.4.8",
"ws": "6.0.0"
}
}