-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
{
"name": "formz-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"mock": "npx tsx watch ./src/mocks/server.ts"
},
"dependencies": {
"@tanstack/react-query": "^5.24.1",
"@xeger/quill-image-actions": "^0.7.2",
"@xeger/quill-image-formats": "^0.7.2",
"axios": "^1.6.7",
"next": "^14.1.1",
"react": "^18",
"react-dom": "^18",
"react-loading-skeleton": "^3.4.0",
"react-multi-carousel": "^2.8.5",
"react-quill": "^2.0.0",
"react-spinners": "^0.13.8",
"sass": "^1.71.1",
"xml2js": "^0.6.2",
"zustand": "^4.5.2"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@mswjs/http-middleware": "^0.9.2",
"@svgr/webpack": "^8.1.0",
"@tanstack/react-query-devtools": "^5.28.10",
"@types/cors": "^2",
"@types/express": "^4",
"@types/node": "^20",
"@types/react": "^18.2.58",
"@types/react-dom": "^18",
"@types/xml2js": "^0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"cors": "^2.8.5",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"express": "^4.19.2",
"lint-staged": "^15.2.2",
"msw": "^2.2.13",
"prettier": "^3.2.5",
"stylelint": "^16.2.1",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"typescript": "^5"
},
"packageManager": "[email protected]",
"msw": {
"workerDirectory": [
"public"
]
}
}