-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
71 lines (71 loc) · 2.15 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "kittenbotgui",
"version": "1.0.0",
"description": "",
"main": "./app/index.js",
"scripts": {
"build": "npm run clean && webpack --progress --colors --bail",
"clean": "rm -rf ./build && mkdir -p build",
"deploy": "touch build/.nojekyll && gh-pages -t -d build -m \"Build for $(git log --pretty=format:%H -n1)\"",
"lint": "eslint . --ext .js,.jsx",
"postmerge": "opt --in postmerge --exec 'npm install'",
"postrewrite": "opt --in postrewrite --exec 'npm install'",
"precommit": "opt --in precommit --exec 'npm run lint'",
"prepush": "opt --in prepush --exec 'npm run test'",
"start": "webpack-dev-server --port 9233 --content-base=./build",
"test": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "https://git.oschina.net/riven/KittenbotGui.git"
},
"author": "",
"license": "ISC",
"peerDependencies": {
"react": "15.x.x",
"react-dom": "15.x.x"
},
"devDependencies": {
"babel-core": "6.14.0",
"babel-eslint": "7.0.0",
"babel-loader": "6.2.5",
"babel-plugin-transform-object-rest-spread": "6.16.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"copy-webpack-plugin": "3.0.1",
"css-loader": "^0.26.1",
"eslint": "3.8.1",
"eslint-config-scratch": "^2.0.0",
"eslint-plugin-react": "6.4.1",
"file-loader": "^0.9.0",
"gh-pages": "0.11.0",
"html-webpack-plugin": "2.22.0",
"husky": "0.11.9",
"jquery": "^3.1.1",
"json-loader": "0.5.4",
"lodash.bindall": "4.4.0",
"lodash.defaultsdeep": "4.4.0",
"minilog": "3.0.1",
"ncp": "^2.0.0",
"opt-cli": "1.5.1",
"react": "15.3.2",
"react-ace": "^4.1.0",
"react-bs-notifier": "^4.1.3",
"react-dom": "15.3.2",
"react-fa": "^4.1.2",
"react-modal": "^1.5.2",
"react-style-proptype": "1.2.0",
"style-loader": "^0.13.1",
"svg-to-image": "1.1.3",
"svg-url-loader": "1.1.0",
"travis-after-all": "1.4.4",
"webpack": "1.13.2",
"webpack-dev-server": "1.15.2",
"xhr": "2.2.2"
},
"dependencies": {
"react-bootstrap": "^0.30.7",
"react-fa": "^4.1.2",
"react-modal-bootstrap": "^1.1.0"
}
}