-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.64 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
{
"name": "final-project",
"version": "1.0.0",
"private": true,
"description": "A full stack JavaScript solo project.",
"main": "server/index.js",
"scripts": {
"start": "NODE_ENV=production node .",
"dev": "NODE_ENV=development nodemon .",
"build": "NODE_ENV=production webpack",
"db:import": "sh database/import.sh",
"prepare": "husky install"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.216.0",
"argon2": "^0.29.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"mime": "^3.0.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"pg": "^8.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/preset-env": "^7.19.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
"babel-loader": "^8.2.5",
"connect-livereload": "^0.6.1",
"css-loader": "^6.7.1",
"error-overlay-webpack-plugin": "^1.1.0",
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"livereload": "^0.9.3",
"markuplint": "^2.11.0",
"nodemon": "^2.0.20",
"react-refresh": "^0.14.0",
"style-loader": "^3.3.1",
"stylelint": "^14.14.0",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard": "^28.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-middleware": "^5.3.3",
"webpack-hot-middleware": "^2.25.2"
}
}