-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
56 lines (56 loc) · 1.63 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "ChineseChessAi",
"version": "1.0.0",
"description": "AI Agent for Chinese Chess - Stanford CS 221 Projects",
"main": "gulpfile.js",
"private": true,
"scripts": {
"start": "concurrently \"tsc -w -p ./server\" \"tsc -w -p ./client\" \"nodemon ./server/bin/www.js\" \"open http:localhost:3000\" ",
"twc:client:w": "tsc -w -p ./client",
"twc:server:w": "tsc -w -p ./server",
"typings": "typings install",
"bundle": "node tools/builder.js",
"bundle:prod": "node tools/builder.js --prod",
"postinstall": "typings install && tsc -p ./server"
},
"engines": {
"node": ">= 5.4.1 < 6"
},
"author": "Vlado Tešanović",
"license": "MIT",
"dependencies": {
"@angular/common": "2.2.3",
"@angular/compiler": "2.2.3",
"@angular/core": "2.2.3",
"@angular/forms": "2.2.3",
"@angular/http": "2.2.3",
"@angular/platform-browser": "2.2.3",
"@angular/platform-browser-dynamic": "2.2.3",
"@angular/router": "3.0.0",
"@angular/upgrade": "2.2.3",
"angular2-in-memory-web-api": "0.0.20",
"body-parser": "~1.13.2",
"chart.js": "2.4.0",
"debug": "2.2.0",
"express": "4.13.4",
"gulp": "3.9.1",
"moment": "2.15.2",
"ng-semantic": "1.1.11",
"ng2-charts": "1.4.1",
"python-shell": "0.4.0",
"typescript": "2.0.2",
"typings": "1.3.2"
},
"devDependencies": {
"del": "2.2.1",
"angular2-in-memory-web-api": "0.0.20",
"systemjs": "0.19.27",
"core-js": "2.4.1",
"reflect-metadata": "0.1.3",
"rxjs": " 5.4.2",
"zone.js": "0.6.23",
"concurrently": "2.0.0",
"nodemon": "1.9.1",
"systemjs-builder": "0.15.17"
}
}