-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.36 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
{
"name": "dobi-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"mock": "npx tsx watch ./src/mocks/http.ts",
"dev:mock": "concurrently --kill-others \"NEXT_PUBLIC_API_MOCKING=enable pnpm dev\" \"pnpm mock\"",
"prepare": "husky"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-toast": "^1.2.4",
"@tanstack/react-query": "^5.62.11",
"@tanstack/react-query-devtools": "^5.62.11",
"axios": "^1.7.9",
"jira-prepare-commit-msg": "^1.7.2",
"next": "14.2.22",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@mswjs/http-middleware": "^0.10.2",
"@types/express": "^5.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"concurrently": "^9.1.1",
"eslint": "^8",
"eslint-config-next": "14.2.22",
"express": "^4.21.2",
"husky": "^9.1.7",
"msw": "^2.7.0",
"typescript": "^5"
},
"msw": {
"workerDirectory": [
"public"
]
},
"jira-prepare-commit-msg": {
"messagePattern": "[$J] $M",
"allowEmptyCommitMessage": false,
"ignoredBranchesPattern": "^(main|develop)$"
}
}