-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.76 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
{
"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": {
"argon2": "^0.28.7",
"chart.js": "^3.9.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"pg": "^8.7.3",
"react": "^18.2.0",
"react-chartjs-2": "^4.3.1",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-transform-react-jsx": "^7.17.12",
"@babel/preset-env": "^7.18.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"connect-livereload": "^0.6.1",
"css-loader": "^6.7.1",
"error-overlay-webpack-plugin": "^1.1.0",
"eslint": "^8.18.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"livereload": "^0.9.3",
"markuplint": "^2.8.0",
"mini-css-extract-plugin": "^2.6.1",
"nodemon": "^2.0.16",
"postcss": "^8.4.18",
"postcss-loader": "^7.0.1",
"react-refresh": "^0.14.0",
"style-loader": "^3.3.1",
"stylelint": "^14.9.1",
"stylelint-config-recommended": "^8.0.0",
"stylelint-config-standard": "^26.0.0",
"tailwindcss": "^3.2.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-middleware": "^5.3.3",
"webpack-hot-middleware": "^2.25.1"
}
}