-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 907 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
{
"name": "react-16-noscript",
"version": "1.0.0",
"description": "Basic project to test React 16.1.0-beta and use of the <noscript> tag.",
"main": "dist/server/index.js",
"scripts": {
"test": "",
"build": "babel app -d dist && webpack",
"start": "node dist/server/index.js",
"go": "npm run build && npm start"
},
"author": "Stephen Last",
"license": "MIT",
"standard": {
"parser": "babel-eslint"
},
"babel": {
"presets": [ "react", [ "env", { "targets": { "browsers": ["IE 7"] } } ] ],
"plugins": []
},
"dependencies": {
"express": "^4.16.2",
"react": "^16.1.0-beta",
"react-dom": "^16.1.0-beta"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"standard": "^10.0.3",
"webpack": "^3.8.1"
}
}