-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.53 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
{
"name": "react-modele",
"devDependencies": {
"@babel/core": "*",
"@babel/plugin-proposal-class-properties": "*",
"@babel/plugin-proposal-object-rest-spread": "*",
"@babel/preset-env": "*",
"@babel/preset-react": "*",
"autoprefixer": "*",
"babel-eslint": "*",
"babel-loader": "*",
"css-loader": "*",
"eslint": "*",
"eslint-config-airbnb": "*",
"eslint-import-resolver-webpack": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jsx-a11y": "*",
"eslint-plugin-react": "*",
"file-loader": "*",
"html-webpack-plugin": "*",
"ignore-styles": "*",
"mini-css-extract-plugin": "*",
"node-sass": "*",
"optimize-css-assets-webpack-plugin": "*",
"postcss": "*",
"postcss-loader": "*",
"sass-loader": "*",
"style-loader": "*",
"stylelint": "*",
"stylelint-config-recommended": "*",
"uglifyjs-webpack-plugin": "*",
"webpack": "*",
"webpack-cli": "*",
"webpack-dev-server": "*"
},
"scripts": {
"start": "webpack-dev-server",
"heroku-postbuild": "webpack -p",
"clean": "rm -rf dist",
"clean:all": "rm -rf dist node_modules",
"build:dev": "NODE_ENV=development webpack",
"build:dev:win": "set NODE_ENV=development && webpack",
"build:prod": "NODE_ENV=production webpack --mode production",
"build:prod:win": "set NODE_ENV=production && webpack --mode production",
"save-deps": "rm -rf node_modules && npm update --save && npm update --save-dev",
"start:server": "node index.js",
"serve": "nodemon index.js"
},
"dependencies": {
"@sandstreamdev/react-swipeable-list": "^0.2.1",
"animate.css": "^3.7.2",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"config": "^3.2.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-validator": "^6.2.0",
"firebase": "^7.2.2",
"global": "^4.4.0",
"globale": "^1.0.0",
"gravatar": "^1.8.0",
"mongoose": "^5.7.6",
"mysql2": "^2.0.0",
"nodemon": "^1.19.4",
"pg": "^7.12.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.14",
"react-bootstrap-typeahead": "^3.4.7",
"react-dom": "^16.8.6",
"react-firebaseui": "^4.0.0",
"react-icons": "^3.7.0",
"react-redux": "^7.1.0",
"react-router-dom": "^5.1.2",
"react-swipeable-views": "^0.13.3",
"redux": "^4.0.1",
"request": "^2.88.0",
"sequelize": "^5.21.2",
"socket.io": "^2.3.0",
"terser-webpack-plugin": "^2.2.1"
}
}