-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.71 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
57
58
59
60
{
"name": "react-pgn-viewer",
"version": "0.2.4",
"description": "React component for creating an interactive pgn viewer from string",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "NODE_ENV=production gulp prod",
"dev": "NODE_ENV=development gulp dev",
"lint": "eslint ./",
"lint-fix": "eslint --fix ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajGingrich/react-pgn-viewer.git"
},
"author": {
"name": "Andrew Gingrich",
"email": "ajgingrich@yahoo.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ajGingrich/react-pgn-viewer/issues"
},
"homepage": "https://github.com/ajGingrich/react-pgn-viewer#readme",
"dependencies": {
"chess.js": "^0.10.2",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"reactjs-chessboard": "0.0.8"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-react": "^6.24.1",
"del": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"eslint-plugin-react": "^7.8.2",
"gulp": "^4.0.2",
"gulp-webserver": "^0.9.1",
"highlight.js": "^9.12.0",
"rollup": "^0.59.1",
"rollup-analyzer-plugin": "^1.1.1",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "8.3.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"rollup-stream": "^1.24.1",
"vinyl-source-stream": "^2.0.0"
}
}