-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.39 KB
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
{
"name": "POT",
"version": "1.0.0",
"scripts": {
"start": "run-p start:backend start:frontend",
"build": "webpack -w",
"start:frontend": "webpack serve",
"start:backend": "nodemon ./backend/server"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.16.0",
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"boxicons": "^2.0.9",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"nodemailer": "^6.7.1",
"quill": "^1.3.6",
"quill-delta-to-html": "^0.12.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.15.8",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.5.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.2",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.3",
"nodemon": "^2.0.14",
"npm-run-all": "^4.1.5",
"prettier": "2.4.1",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
}
}