-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.94 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.94 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "angular2-edge-app",
"description": "",
"version": "0.0.2",
"scripts": {
"startup": "concurrently \"npm run db\" \"npm run server\" ",
"server": "node server/index.js",
"db": "mongod",
"tsc": "tsc",
"tsc:w": "tsc -w",
"stylus": "gulp stylus",
"build": "concurrently \"npm run stylus\" \"npm run tsc\" ",
"start": "npm run build && npm run startup",
"watch": "concurrently \"npm run tsc:w\" \"gulp serve\" "
},
"license": "MIT",
"dependencies": {
"@angular/common": "^2.0.1",
"@angular/compiler": "^2.0.1",
"@angular/core": "^2.0.1",
"@angular/forms": "^2.0.1",
"@angular/http": "^2.0.1",
"@angular/platform-browser": "^2.0.1",
"@angular/platform-browser-dynamic": "^2.0.1",
"@angular/router": "^3.0.1",
"@angular/upgrade": "^2.0.1",
"angular2-in-memory-web-api": "0.0.20",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.0",
"core-js": "^2.4.1",
"express": "^4.13.4",
"jsonwebtoken": "^6.1.0",
"lodash": "^4.11.1",
"mongodb": "^2.1.18",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.12",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.8",
"systemjs": "0.19.27",
"zone.js": "^0.6.23"
},
"devDependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/body-parser": "0.0.29",
"@types/cors": "0.0.33",
"@types/express": "^4.0.32",
"@types/express-serve-static-core": "^4.0.33",
"@types/hammerjs": "^2.0.32",
"@types/jsonwebtoken": "^7.1.32",
"@types/mongodb": "^2.1.33",
"@types/node": "^6.0.38",
"@types/reflect-metadata": "0.0.4",
"@types/serve-static": "^1.7.27",
"@types/socket.io": "^1.4.27",
"browser-sync": "^2.16.0",
"concurrently": "^2.0.0",
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-inject": "^4.1.0",
"gulp-stylus": "^2.5.0",
"stream-series": "^0.1.1",
"tslint": "^3.15.1",
"typescript": "^2.0.3"
}
}