-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 998 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 998 Bytes
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": "react-starter",
"author": "Marcin Ruman",
"version": "1.0.0",
"main": "webpack.config.js",
"dependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-jsx-img-import": "^0.1.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"extract-text-webpack-plugin": "^2.1.2",
"history": "^4.6.3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router": "^3.0.5",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.5.0"
},
"devDependencies": {},
"scripts": {
"dev-server": "webpack-dev-server --content-base src --inline --hot",
"prod": "NODE_ENV=production webpack",
"dev": "NODE_ENV=development webpack"
}
}