-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 928 Bytes
/
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
{
"name": "blog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"es6-promise": "^3.2.1",
"firebase": "^3.3.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-router": "^2.7.0"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"eslint": "^3.4.0",
"webpack": "^1.13.2"
},
"scripts": {
"test:lint": "eslint . --ext .js --ext .jsx --ignore-path .gitignore --cache",
"test": "echo \"Error: no test specified\" && exit 1",
"browsersync": "browser-sync start --server --files 'index.html, build'",
"serve": "npm run webpack | npm run browsersync",
"webpack": "webpack -d --watch",
"build": "browserify ./src/app.js -o ./build/bundle.js -t [ babelify --presets [ es2015 react ] ]"
},
"author": "",
"license": "ISC"
}