-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.81 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.81 KB
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
50
51
52
53
{
"name": "react-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=development webpack-dashboard -c cyan -- node server.js",
"dist": "rimraf dist && cross-env NODE_ENV=production webpack --config ./cfg/webpack.dist.js --progress",
"libdev": "rimraf dev && cross-env NODE_ENV=production webpack --config ./cfg/webpack.libdev.js --progress",
"lib": "rimraf dist && cross-env NODE_ENV=production webpack --config ./cfg/webpack.lib.js --progress",
"lint": "eslint ./src"
},
"author": "Mandeep Singh Brar",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.8",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.4",
"eslint": "^4.4.1",
"extract-text-webpack-plugin": "^3.0.0",
"flow-bin": "^0.53.0",
"html-webpack-plugin": "^2.30.1",
"path": "^0.12.7",
"postcss-loader": "^2.0.6",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.5.5",
"webpack-dashboard": "^0.4.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.18.2",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"autoprefixer": "^7.1.2",
"babel-runtime": "^6.26.0",
"express": "^4.15.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-hot-loader": "next"
}
}