-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.96 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
{
"name": "bloglist",
"version": "1.0.0",
"description": "",
"scripts": {
"server:dev": "cross-env NODE_ENV=development nodemon index.js",
"server:start": "cross-env NODE_ENV=production node index.js",
"server:test": "cross-env NODE_ENV=test node --test",
"client:dev": "vite ./client/ --host",
"client:test": "vitest run -c ./client/vite.config.mjs",
"client:build": "vite build ./client/",
"deploy": "vite build ./client/ && cross-env NODE_ENV=production node index.js",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"framer-motion": "^11.1.7",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "8.1.1",
"mongoose-unique-validator": "^5.0.0",
"react": "^18.3.0",
"react-dom": "^18.3.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@stylistic/eslint-plugin-js": "^1.7.2",
"@testing-library/react": "^15.0.5",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^1.5.2",
"eslint": "^8.57.0",
"eslint-plugin-cypress": "^2.15.2",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.1",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-vitest-globals": "^1.5.0",
"jsdom": "^24.0.0",
"nodemon": "^3.1.0",
"supertest": "^6.3.4",
"vite": "^5.2.10",
"vitest": "^1.5.2"
}
}