-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "react-umd-boilerplate",
"version": "1.0.1",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
]
}
]
]
},
"main": "index.js",
"scripts": {
"js:watch": "simplifyify \"./app.js\" -o \"./dist/bundle.js\" -w",
"js:build": "simplifyify \"./app.js\" -o \"./dist/bundle.min.js\" -m",
"browsersync": "browser-sync start --server \"./dist\" --files \"./dist\" --no-ghost-mode --reload-delay 300",
"start": "npm-run-all --parallel js:watch browsersync",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babelify": "^7.3.0",
"browser-sync": "^2.18.8",
"browserify": "^14.1.0",
"eslint": "^3.16.1",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-react": "^6.10.0",
"eslint-plugin-standard": "^2.0.1",
"npm-run-all": "^4.0.1",
"simplifyify": "^3.2.1"
},
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2"
}
}