-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
{
"name": "chessm8",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "mocha './src/**/*.test.js'",
"start": "node ./src/server/server.js",
"build": "cd src/client && webpack --mode production",
"deploy":
"yarn build && git subtree push --prefix=src/client/static origin gh-pages",
"server:dev": "nodemon ./src/server/server.js",
"client:dev": "cd src/client && webpack --mode development --watch"
},
"repository": "https://github.com/jaxony/chessm8.git",
"author": "Jackson Huang <jackson_huang@live.com>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.1",
"chess.js": "^0.10.2",
"express": "^4.16.3",
"is-running": "^2.1.0",
"jquery": "1.12.4",
"q": "^1.5.1",
"stockfish": "^8.0.0",
"string": "^3.3.3"
},
"devDependencies": {
"chai": "^4.1.2",
"jsdom": "^11.7.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.0.5",
"mocha-jsdom": "^1.1.0",
"nodemon": "^1.17.3",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14"
}
}