-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.18 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
{
"name": "amadeus",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"startw": "start npm run buildw && start npm run server",
"startm": "npm run build && npm run server",
"server": "tsc && node dist/app.js",
"deploy": "tsc && npm run buildprod",
"angular": "npm run build",
"buildw": "cd angular/ && ng build --watch",
"build": "cd angular/ && ng build",
"buildprod": "cd angular/ && ng build --prod",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "delashum",
"license": "ISC",
"dependencies": {
"@types/express-session": "^1.15.7",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"express-session": "^1.15.6",
"express-socket.io-session": "^1.3.2",
"mongodb": "^3.0.2",
"mongoose": "^5.0.1",
"morgan": "^1.9.0",
"papaparse": "^4.3.7",
"socket.io": "^2.0.4"
},
"devDependencies": {
"@angular/cli": "^1.6.6",
"@angular/core": "^5.2.2",
"@types/body-parser": "^1.16.8",
"@types/colors": "^1.1.3",
"@types/express": "^4.11.0",
"@types/mongodb": "^3.0.5",
"@types/mongoose": "^5.0.1",
"@types/morgan": "^1.7.35",
"@types/node": "^9.4.0",
"@types/socket.io": "^1.4.31",
"colors": "^1.1.2"
}
}