-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.37 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.37 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "platform_app",
"author": "Chris Wang",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "next dev --turbo -p 5173",
"start": "next start -p 5173",
"build": "next build",
"lint": "next lint",
"mock": "node ./mock/index.js",
"preview": "vite preview",
"prepare": "husky install",
"test": "jest",
"test:watch": "jest --watchAll",
"coverage": "yarn test --coverage --watchAll",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"generate": "graphql-codegen",
"prestart": "yarn generate",
"predev": "yarn generate"
},
"dependencies": {
"@apollo/client": "^3.8.6",
"@hookform/resolvers": "^3.9.0",
"@types/recharts": "^1.8.29",
"@types/three": "^0.158.1",
"add": "^2.0.6",
"bootstrap": "^5.3.2",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"final-form": "^4.20.10",
"framer-motion": "^10.16.4",
"graphql": "^16.8.1",
"mdi-react": "^9.3.0",
"next": "^14.1.3",
"polished": "^4.2.2",
"prop-types": "^15.8.1",
"rc-notification": "^5.3.0",
"react": "^18.2.0",
"react-bootstrap": "^2.9.1",
"react-dom": "^18.2.0",
"react-final-form": "^6.5.9",
"react-hook-form": "^7.48.2",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"recharts": "^2.12.6",
"sharp": "^0.33.3",
"smooth-scrollbar": "^8.8.4",
"smooth-scrollbar-react": "^2.4.1",
"styled-components": "^6.1.0",
"styled-theming": "^2.2.0",
"three": "0.125.0",
"vanta": "^0.5.24",
"yarn": "^1.22.19",
"zod": "^3.23.8"
},
"devDependencies": {
"@apollo/server": "^4.9.5",
"@faker-js/faker": "^8.2.0",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.3.0",
"@graphql-tools/mock": "^9.0.0",
"@graphql-tools/schema": "^10.0.0",
"@parcel/watcher": "^2.4.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.5",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/mime": "^4.0.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "5.3.1",
"@types/styled-components": "^5.1.29",
"@types/styled-theming": "^2.2.7",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.16",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.3",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-testing-library": "^6.2.2",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"jest-transformer-svg": "^2.0.2",
"less": "^4.2.0",
"lint-staged": "^15.1.0",
"postcss": "^8.4.31",
"prettier": "^3.2.5",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-eslint": "^1.8.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx, json, html, css}": [
"yarn format:write"
]
}
}