-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
56 lines (56 loc) · 1.73 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": "ai_xiangqi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"basscss": "^8.0.3",
"flexboxgrid": "^6.3.1",
"material-ui": "^0.18.0",
"moment": "^2.18.1",
"normalize.css": "^7.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-tap-event-plugin": "^2.0.1",
"surgeonkit": "0.0.7"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-preset-es2015": "^6.22.0",
"benchmark": "2.1.4",
"css-loader": "^0.28.4",
"express": "^4.15.3",
"extract-text-webpack-plugin": "^2.0.0",
"jasmine-core": "^2.5.2",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "2.0.3",
"node-sass": "^4.5.1",
"npm-run-all": "^4.0.2",
"phantomjs-prebuilt": "^2.1.14",
"react-scripts": "^1.0.7",
"sass-loader": "^6.0.2",
"style-loader": "^0.18.2",
"webpack": "^2.2.1",
"webpack-dev-server": "2"
},
"scripts": {
"gametest": "node_modules/karma/bin/karma start karma.conf.js",
"benchmark": "node ./spec/algorithm/AlphaBetaPruner_benchmark_spec.js",
"build-css": "node-sass src/ -o src/",
"watch-css": "npm run build-css && node-sass src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "PORT=3001 npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"keywords": [],
"author": "Congwen Ma <congwen.ma@gmail.com>",
"license": "ISC"
}