-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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": "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": {
"-": "^0.0.1",
"argon2": "^0.29.1",
"bootstrap": "^5.2.1",
"bootstrap-icons": "^1.9.1",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"font-awesome": "^4.7.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"pg": "^8.8.0",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"babel-loader": "^8.2.5",
"connect-livereload": "^0.6.1",
"css-loader": "^6.7.1",
"error-overlay-webpack-plugin": "^1.1.0",
"eslint": "^8.23.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-react": "^7.31.7",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"livereload": "^0.9.3",
"markuplint": "^2.10.1",
"nodemon": "^2.0.19",
"react-refresh": "^0.14.0",
"style-loader": "^3.3.1",
"stylelint": "^14.11.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"
}
}