-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.79 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
{
"name": "shoutout",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"server": "node ./src/server/server.js",
"server:watch": "nodemon --config nodemon.json ./src/server/server.js",
"build": "webpack",
"build:watch": "webpack --watch",
"start": "npm-run-all --sequential build server",
"dev": "npm-run-all --sequential build --parallel **:watch"
},
"dependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"axios": "^0.19.0",
"babel-loader": "^8.0.6",
"body-parser": "^1.19.0",
"clean-webpack-plugin": "^3.0.0",
"cloudinary": "^1.14.0",
"connect-mongo": "^3.0.0",
"css-loader": "^2.1.1",
"dayjs": "^1.8.14",
"dotenv": "^7.0.0",
"escape-html": "^1.0.3",
"express": "^4.16.4",
"express-session": "^1.16.2",
"express-validator": "^6.1.1",
"jsonfile": "^5.0.0",
"linkifyjs": "^2.1.8",
"mini-css-extract-plugin": "^0.7.0",
"mongodb": "^3.2.3",
"mongoose": "^5.5.4",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"passport": "^0.4.0",
"passport-local-mongoose": "^5.0.1",
"pug": "^2.0.3",
"randomstring": "^1.1.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-inlinesvg": "^0.8.4",
"react-router-dom": "^5.0.1",
"react-transition-group": "^4.2.2",
"sass-loader": "^7.1.0",
"serve-favicon": "^2.5.0",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-fix-style-only-entries": "^0.3.0",
"webpack-manifest-plugin": "^2.0.4",
"webpack-merge": "^4.2.1"
},
"devDependencies": {
"nodemon": "^1.18.11"
}
}