-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "react-go-board",
"version": "0.8.0",
"description": "React go board to render a godash Board",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/duckpunch/react-go-board.git"
},
"keywords": [
"go",
"weiqi",
"baduk"
],
"author": {
"name": "duckpunch",
"url": "https://github.com/duckpunch"
},
"scripts": {
"clean": "rm -rf ./lib",
"build": "webpack",
"prepare": "npm run clean; npm run build",
"start": "webpack-dev-server --inline --hot --debug --config webpack.config.dev.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch --debug --progress"
},
"license": "ISC",
"dependencies": {
"godash": "^1.3.5",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.9.0"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"react-dom": "^16.9.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^3.1.11"
}
}