forked from stealjs/react-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.19 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
48
49
{
"name": "steal-react-example",
"description": "",
"version": "1.0.0",
"main": "",
"scripts": {
"start": "npm run build && npm run server",
"server": "http-server ./ -c-1 -p $PORT",
"live-reload": "steal-tools live-reload --main src/index",
"watch": "cross-env NODE_ENV=production steal-tools --main src/index --watch --envify",
"build": "cross-env NODE_ENV=production steal-tools --main src/index --envify"
},
"dependencies": {
"http-server": "^0.11.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-router-dom": "^4.3.1",
"steal": "^1.0.10"
},
"devDependencies": {
"steal-tools": "^1.11.9",
"cross-env": "^5.2.0",
"steal-css": "^1.3.2",
"steal-less": "^1.3.1",
"steal-jsx": "^0.0.2"
},
"steal": {
"transpiler": "babel",
"babelOptions": {
"blacklist": []
},
"plugins": [
"steal-jsx",
"steal-less",
"steal-css"
],
"configDependencies": [
"live-reload"
],
"envs": {
"production": {
"paths": {
"react": "node_modules/react/dist/react.min.js",
"react-dom": "node_modules/react-dom/dist/react-dom.min.js"
}
}
}
}
}