-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.16 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
63
64
65
66
67
68
69
70
71
72
{
"name": "hgz-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"node": "tsc && NODE_ENV=development node --loader ts-node/esm src/_server/express.ts --watch --debug",
"build": "tsc && vite build --watch",
"preview": "NODE_ENV=production vite preview",
"prod": "vite build && vite preview",
"test": "NODE_ENV=testing vitest",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@apollo/client": "^3.8.6",
"@apollo/server": "^4.9.4",
"@testing-library/user-event": "^14.5.2",
"@types/react-router-dom": "^5.3.3",
"bcrypt": "^5.1.1",
"cookie": "^0.6.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"formik": "^2.4.5",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"jsonwebtoken": "^9.0.2",
"msw": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.20.0",
"react-snowfall": "^2.0.0",
"sqlite": "^5.0.1",
"sqlite3": "^5.1.6",
"styled-components": "^6.1.1",
"ts-node": "^10.9.1",
"vitest": "^0.34.6",
"yup": "^1.3.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/bcrypt": "^5.0.2",
"@types/cookie": "^0.6.0",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.15",
"@types/debug": "^4.1.10",
"@types/express": "^4.17.2",
"@types/jsonwebtoken": "^9.0.5",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-helmet": "^6.1.11",
"@types/sqlite3": "^3.1.10",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.17",
"daisyui": "^4.6.1",
"debug": "^4.3.4",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jsdom": "^22.1.0",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"testing": "link:@apollo/client/testing",
"typescript": "^5.0.2",
"vite": "^4.4.5"
}
}