-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.78 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "xt-spacex-project",
"version": "1.0.0",
"description": "spacex react project",
"main": "index.js",
"scripts": {
"start": "node build/bundle.js",
"build:prod": "rm -rf build && rm -rf public && webpack --config webpack.server.js && webpack --config webpack.client.prod.js --mode production",
"heroku-postbuild": "npm install && npm run build:prod",
"webpack-prod": "webpack --progress --config webpack.client.prod.js --mode production",
"dev": "npm run build-server && npm-run-all --parallel dev:*",
"build-server": "webpack --config webpack.server.js",
"dev:build-server": "webpack --config webpack.server.js --watch",
"dev:build-client": "webpack --config webpack.client.js --watch",
"dev:server": "nodemon --watch build --exec \"node build/bundle.js\"",
"test": "jest"
},
"engines": {
"node": "10.x",
"npm": "6.x"
},
"keywords": [
"react",
"server-side",
"redux",
"spacex",
"responsive"
],
"author": "vishal pratap",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"axios": "^0.21.0",
"compression": "^1.7.4",
"compression-webpack-plugin": "^6.0.5",
"concurrently": "^5.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"express": "^4.17.1",
"jest": "^26.4.2",
"jest-cli": "^26.4.2",
"lodash": "^4.17.20",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "^6.1.0",
"react-lazy-load-image-component": "^1.5.0",
"react-redux": "^7.2.2",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"serialize-javascript": "^5.0.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "4.44.1",
"webpack-dev-server": "3.11.0",
"webpack-merge": "4.2.2",
"webpack-node-externals": "2.5.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"css-loader": "^5.0.1",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"lint-staged": "^10.5.1",
"mini-css-extract-plugin": "^1.3.0",
"sass-loader": "^10.0.5",
"style-loader": "^2.0.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12"
}
}