-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.03 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": "igmeshi",
"version": "0.0.1",
"description": "ignis meshi generator",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "$(npm bin)/browserify -t babelify src/index.js -o build/index.js",
"production-build": "NODE_ENV=production $(npm bin)/browserify -t babelify src/index.js -o build/index.js",
"watch-dev": "$(npm bin)/watchify -v -t babelify src/index.js -o build/index.js",
"production-watch-dev": "NODE_ENV=production $(npm bin)/watchify -v -t babelify src/index.js -o build/index.js"
},
"author": "hsimyu",
"license": "BSD",
"dependencies": {
"react": "~15.4.1",
"react-dom": "~15.4.1",
"react-dropzone": "~3.7.3",
"redux": "~3.6.0",
"react-redux": "~4.4.6"
},
"devDependencies": {
"babelify": "~7.3.0",
"browserify": "~13.1.1",
"jquery": "~3.1.1",
"react-bootstrap": "~0.30.7",
"watchify": "~3.7.0",
"babel-preset-es2015": "~6.18.0",
"babel-preset-react": "~6.16.0",
"bootstrap": "~3.3.7"
}
}