-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 2.18 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
{
"name": "react-pwa-example",
"version": "1.0.0",
"description": "Example Progressive Web App using React Create App",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node ./server/index.js",
"dev": "nodemon --exec babel-node ./server/index.js",
"build": "NODE_ENV=production npx webpack --config ./webpack/production/config.babel.js",
"postinstall": "npm run build",
"lint": "eslint . --ext .js,.jsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mskhirwar/react-pwa-example.git"
},
"author": "Manmohan Singh",
"license": "ISC",
"bugs": {
"url": "https://github.com/mskhirwar/react-pwa-example/issues"
},
"homepage": "https://github.com/mskhirwar/react-pwa-example#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"body-parser": "^1.19.0",
"braces": "^2.3.2",
"cookie-parser": "^1.4.4",
"css-loader": "^3.0.0",
"dotenv": "^8.0.0",
"env-cmd": "^9.0.3",
"express": "^4.17.1",
"file-loader": "^4.0.0",
"morgan": "^1.9.1",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"pug": "^2.0.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.0",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.34.0",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"nodemon": "^1.19.1",
"pre-commit": "^1.2.2",
"webpack-cli": "^3.3.4"
},
"engines": {
"node": "8.10.x"
}
}