-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
35 lines (35 loc) · 1.19 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
{
"name": "gitbucket-explorer-plugin",
"version": "5.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify -t babelify ./scripts/index.js -o ./src/main/resources/explorer/assets/bundle.js && sbt assembly",
"watch": "watchify -t babelify ./scripts/index.js -o ./src/main/resources/explorer/assets/bundle.js",
"release": "set NODE_ENV=production && browserify ./scripts/index.js -t babelify -t envify | uglifyjs > ./src/main/resources/explorer/assets/bundle.js && sbt clean assembly"
},
"author": "tomoki1207",
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^14.0.0",
"envify": "^4.0.0",
"eslint": "^4.0.0",
"eslint-config-airbnb": "^15.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"uglify-js": "^3.0.28",
"watchify": "^3.11.1"
},
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-localstorage": "^0.3.0",
"react-mixin": "^3.0.5",
"superagent": "^3.4.1"
}
}