-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1022 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "reactjs-start",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify --debug -o public/app.js .",
"server": "http-server -c-1 ./public",
"watch": "watchify -v --debug -o public/app.js ."
},
"author": "",
"license": "MIT",
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"http-server": "^0.11.1",
"watchify": "^3.11.0"
},
"browser": "src/index.js",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"env",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
}
]
]
}
}