-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.14 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
{
"name": "keyme",
"version": "0.0.0",
"scripts": {
"dev": "next dev",
"develop": "next dev",
"start": "next start",
"build": "next build",
"build:analyze": "ANALYZE=true yarn build",
"lint": "TIMING=1 eslint \"src/**/*.{ts,tsx}\" --no-error-on-unmatched-pattern",
"lint:fix": "TIMING=1 eslint \"src/**/*.{ts,tsx}\" --fix --no-error-on-unmatched-pattern",
"format": "prettier --write .",
"postinstall": "husky install",
"lint-staged": "lint-staged -v",
"type-check": "tsc --noEmit --skipLibCheck",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"@lukemorales/query-key-factory": "^1.3.2",
"@next/bundle-analyzer": "^13.4.19",
"@suspensive/react": "^1.11.3",
"@tanstack/query-core": "^4.32.6",
"@tanstack/react-query": "^4.32.6",
"@tanstack/react-query-devtools": "^4.32.6",
"@tanstack/react-query-next-experimental": "^5.0.0-alpha.80",
"@vanilla-extract/css": "^1.12.0",
"@vanilla-extract/next-plugin": "^2.1.3",
"@vercel/analytics": "^1.0.2",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"framer-motion": "^10.15.0",
"jotai": "^2.3.1",
"next": "13.4.9",
"next-themes": "^0.2.1",
"qs": "^6.11.2",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-loader-spinner": "^5.3.4",
"react-range": "^1.8.14",
"use-debounce": "^9.0.4"
},
"devDependencies": {
"@types/node": "20.4.1",
"@types/qs": "^6",
"@types/react": "18.2.14",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "18.2.6",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-next": "^13.4.9",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"pinst": "^3.0.0",
"prettier": "^2.8.8",
"typescript": "5.1.6"
}
}