-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.69 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
{
"name": "redmart-assignment",
"version": "0.1.0",
"private": true,
"author": "Nisarg Thakkar",
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"eslint-plugin-react": "^7.5.1",
"history": "^4.7.2",
"html-webpack-plugin": "^2.30.1",
"immutable": "^3.8.2",
"path": "^0.12.7",
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.8",
"react-scripts": "1.0.17",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --open --config webpack.development.config.js",
"build:dev": "cross-env NODE_ENV=development webpack -p --config webpack.development.config.js",
"build:prod": "rimraf ./dist/ && cross-env NODE_ENV=production webpack -p --config webpack.production.config.js",
"server:dev": "cross-env NODE_ENV=development && node server.js",
"server:prod": "cross-env NODE_ENV=production && node server.js",
"eslint": "./node_modules/eslint/bin/eslint.js ./src/**/*.js ./src/**/**/*.js ./src/**/*.jsx ./src/**/**/*.jsx"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"cross-env": "^5.1.3",
"eslint": "^4.14.0",
"eslint-plugin-babel": "^4.1.2",
"file-loader": "^1.1.6",
"json-loader": "^0.5.7",
"uglifyjs-webpack-plugin": "^1.1.6"
}
}