-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
88 lines (88 loc) · 2.67 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
88
{
"name": "pern-advanced-starter",
"version": "1.0.0",
"description": "Advanced PERN stack starter app",
"engines": {
"npm": "6.14.10",
"node": "14.7.0"
},
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"build": "webpack --mode production",
"heroku-postbuild": "echo Skip builds on Heroku",
"client": "webpack serve --mode development --devtool inline-source-map --hot",
"server": "nodemon src/server/index.js",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/tg970/PERN-Advanced-Starter.git"
},
"author": "Tyler Goodman",
"license": "ISC",
"bugs": {
"url": "https://github.com/tg970/PERN-Advanced-Starter/issues"
},
"homepage": "https://github.com/tg970/PERN-Advanced-Starter#readme",
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"axios": "^0.21.x",
"bluebird": "^3.5.3",
"classnames": "^2.2.6",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-rate-limit": "^5.2.3",
"helmet": "^4.x.x",
"moment": "^2.29.1",
"morgan": "^1.9.1",
"pg-monitor": "^1.4.1",
"pg-promise": "^10.8.6"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.x.x",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^3.x.x",
"concurrently": "^5.3.0",
"css-loader": "^5.x.x",
"eslint": "^7.x.x",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.x.x",
"eslint-plugin-security": "^1.4.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"nodemon": "^2.0.6",
"path-browserify": "^1.0.1",
"prop-types": "^15.6.2",
"raw-loader": "^4.0.2",
"react": "^16.x.x",
"react-datetime": "^3.x.x",
"react-dom": "^16.x.x",
"react-markdown": "^5.x.x",
"react-nouislider": "^2.0.1",
"react-popper": "0.10.4",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-slick": "^0.27.13",
"react-swipeable-views": "^0.13.9",
"redux": "^4.0.1",
"sass": "^1.32.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.x.x",
"url-loader": "^4.1.1",
"webpack": "^5.11.1",
"webpack-cli": "^4.x.x",
"webpack-dev-server": "^3.11.1"
}
}