-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 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
{
"name": "dbfs",
"author": "Ivan Sadikov",
"repository": {
"type": "git",
"url": "https://github.com/lightcopy/dbfs.git"
},
"description": "dbfs",
"license": "Apache-2.0",
"scripts": {
"setup": "if [ ! -d \"static\" ]; then mkdir static; fi",
"copy_favicon": "cp web/favicon.ico static/",
"copy_logo": "cp web/logo.png static/",
"copy_html": "cp web/view/index.html static/",
"qc": "browserify -t [ babelify --presets [ react ] ] web/js/* -o static/index.min.js",
"compile": "browserify -t [ babelify --presets [ react ] ] web/js/* | uglifyjs - -o static/index.min.js -c -m",
"build": "npm run compile && npm run copy_favicon && npm run copy_html && npm run copy_logo",
"publish": "npm run setup && npm run test && npm run build"
},
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"@blueprintjs/core": "^1.19.0"
},
"devDependencies": {
"uglify-js": "^2.8.21",
"browserify": "^14.1.0",
"babelify": "7.3.0",
"babel-preset-react": "6.24.1"
}
}