-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.8 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
{
"name": "cassette-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "cross-env ANALYZE=true NODE_ENV=production next build&&source-map-explorer .next/static/**/*.js",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"lint-fix": "eslint '**/*.{ts,tsx}' --ext .ts,.tsx --fix",
"lint-staged": "lint-staged"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@emotion/babel-plugin": "^11.10.5",
"@emotion/css": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@tanstack/react-query": "^4.24.10",
"@types/node": "^18.11.17",
"axios": "^1.2.3",
"cookie": "^0.5.0",
"emotion": "^11.0.0",
"eslint": "8.29.0",
"eslint-config-next": "13.0.6",
"eslint-config-prettier": "^8.6.0",
"next": "13.0.6",
"next-pwa": "^5.6.0",
"react": "next",
"react-audio-voice-recorder": "^1.0.4",
"react-cookie": "^4.1.1",
"react-dom": "next",
"react-voice-recorder": "^2.1.2",
"zustand": "^4.1.5",
"zustand-persist": "^0.4.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.2.4",
"@svgr/webpack": "^6.5.1",
"@types/cookie": "^0",
"@types/gtag.js": "^0.0.12",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.47.0",
"cross-env": "^7.0.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-simple-import-sort": "latest",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"next-compose-plugins": "^2.2.1",
"react-query-devtools": "^2.6.3",
"source-map-explorer": "^2.5.3",
"typescript": "4.4.4"
},
"packageManager": "[email protected]"
}