-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.61 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
{
"name": "chess",
"version": "1.0.0",
"description": "An open-source implementation of the public Chess.com API",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martynchamberlin/chess.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/martynchamberlin/chess/issues"
},
"homepage": "https://github.com/martynchamberlin/chess#readme",
"dependencies": {
"axios": "^0.16.2",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-remove-strict-mode": "0.0.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chess.js": "^0.10.2",
"chessground": "^7.2.4",
"chessground-examples": "github:ornicar/chessground-examples#master",
"css-loader": "^0.28.7",
"file-loader": "^0.11.2",
"style-loader": "^0.18.2",
"vue": "^2.4.2",
"vue-hot-reload-api": "^2.1.0",
"vue-loader": "^13.0.4",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.4.2",
"vuex": "^2.4.0",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.7.1"
},
"devDependencies": {
"expose-loader": "^0.7.3",
"webpack-hot-middleware": "^2.19.1",
"webpack-node-externals": "^1.6.0"
}
}