-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (55 loc) · 1.52 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
{
"name": "react-chessdiagram",
"version": "1.3.2",
"description": "chess diagram react component",
"main": "./build/dist.chessdiagram.js",
"dependencies": {
"chess.js": "^0.10.2",
"prop-types": "^15.5.10",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-table": "^5.4.1"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.25.0",
"enzyme": "^2.6.0",
"eslint": "^3.8.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-react": "^6.6.0",
"jest": "^17.0.0",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-docgen": "^2.11.0",
"react-dom": "^15.3.2",
"react-scripts": "^0.7.0",
"sinon": "^2.1.0",
"style-loader": "^0.13.1",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"scripts": {
"test": "react-scripts test --env=jsdom",
"lint": "node node_modules/eslint/bin/eslint ./src --ext .js --ext .jsx --cache",
"dev": "webpack-dev-server --config webpack.dev.config.js --content-base build --devtool source-map --hot --inline --progress --colors",
"build": "webpack -p",
"generate-docs": "node ./generate-docs.js >api.md"
},
"keywords": [
"chess",
"chessboard",
"react",
"FEN",
"diagram",
"board"
],
"author": "Judd Niemann",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jniemann66/react-chessdiagram.git"
}
}