-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.87 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "allright",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"client-dev": "webpack-dev-server --open --config webpack.config.js --define process.env.NODE_ENV=\\\"'development'\\\"\" ",
"server-dev": "nodemon --watch server --exec babel-node server/app.js",
"build": "npm run clean && npm run build-server && npm run build-client",
"build-client": "webpack --env=production --mode=production --define process.env.NODE_ENV=\"'production'\"",
"build-server": "babel server -d dist/server -s && babel common -d dist/common && npm run copy-env",
"copy-env": "copyfiles .env.defaults dist"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/idoperach/finalproject.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/idoperach/finalproject/issues"
},
"homepage": "https://gitlab.com/idoperach/finalproject#readme",
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.11.1",
"@babel/node": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.3",
"@babel/plugin-proposal-object-rest-spread": "^7.10.3",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.1",
"@hot-loader/react-dom": "^16.12.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"env-bunyan": "^0.1.0",
"eslint": "^6.8.0",
"eslint-config-sharongrossman": "^0.1.4",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-lodash": "^6.0.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"eslint-plugin-unicorn": "^16.1.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.3",
"method-override": "^3.0.0",
"nodemon": "^2.0.4",
"react-hot-loader": "^4.12.19",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@material-ui/core": "^4.10.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/pickers": "^3.2.10",
"@material-ui/styles": "^4.9.10",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "latest",
"classnames": "^2.2.6",
"clsx": "^1.1.0",
"color-thief-react": "^1.0.2",
"compression": "latest",
"cookie-parser": "^1.4.5",
"copyfiles": "^2.3.0",
"core-js": "^3.6.5",
"deezer-web-api": "^1.7.2",
"dotenv-extended": "^2.8.0",
"email-address": "^1.2.2",
"express": "latest",
"express-async-router": "^0.1.15",
"express-json-error-handler": "^3.0.0",
"express-jwt": "^5.3.3",
"express-mongoose-errors": "^0.2.0",
"express-param-objectid": "^1.0.0",
"express-static-gzip": "^2.0.6",
"express-validation-middleware": "^1.0.2",
"express-validator": "^6.5.0",
"final-form": "^4.20.0",
"fs-extra": "^9.0.0",
"helmet": "^3.23.1",
"history": "4.10.1",
"http-errors": "latest",
"http-parser-js": "^0.5.2",
"http-reject-empty": "^1.0.0",
"in-production": "^1.0.1",
"joi": "^14.3.1",
"js-cookie": "^2.2.1",
"jss-rtl": "^0.3.0",
"lodash": "^4.17.19",
"mobx": "^5.15.4",
"mobx-react": "^6.1.8",
"mongoose": "^5.9.19",
"mongoose-plugin-seed": "^0.4.0",
"morgan": "^1.10.0",
"mui-rff": "^2.1.15",
"multer": "^1.4.2",
"node-sass": "^4.14.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1",
"pify": "^5.0.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-final-form": "^6.5.0",
"react-router-dom": "^5.1.2",
"react-signature-canvas": "^1.0.3",
"regenerator-runtime": "^0.13.7",
"sass": "^1.26.8",
"yup": "^0.29.1"
}
}