-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.23 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.23 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
{
"name": "jobmanri-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"clean": "rm -rf yarn.lock .yarn/cache .yarn/unplugged .pnp.* node_modules",
"doctor": "yarn dlx @yarnpkg/doctor",
"setup": "yarn dlx @yarnpkg/sdks vscode",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=chpt_d20eac43461830a"
},
"dependencies": {
"@tanstack/react-query": "^5.90.12",
"@vanilla-extract/css": "^1.17.5",
"@vanilla-extract/recipes": "^0.5.7",
"@vanilla-extract/sprinkles": "^1.6.5",
"@vanilla-extract/vite-plugin": "^5.1.3",
"ky": "^1.14.1",
"lucide-react": "^0.555.0",
"next": "15.5.9",
"react": "^19.2.2",
"react-dom": "^19.2.2"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@eslint/eslintrc": "^3",
"@next/eslint-plugin-next": "^16.0.6",
"@storybook/addon-docs": "^9.1.0",
"@storybook/nextjs-vite": "^9.1.0",
"@tanstack/eslint-plugin-query": "^5.91.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/eslint-plugin-jsx-a11y": "^6",
"@types/globrex": "^0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vanilla-extract/next-plugin": "^2.4.16",
"chromatic": "^13.3.4",
"eslint": "^9",
"eslint-config-next": "15.5.6",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "^9.1.16",
"globals": "^16.5.0",
"globrex": "^0.1.2",
"prettier": "^3.7.3",
"rollup": "^4.53.3",
"storybook": "^9.1.0",
"typescript": "^5",
"typescript-eslint": "^8.48.0",
"vite": "^6.0.0",
"vite-tsconfig-paths": "^5.1.4"
},
"packageManager": "yarn@4.12.0",
"dependenciesMeta": {
"globrex": {
"unplugged": true
},
"rollup": {
"unplugged": true
},
"storybook": {
"unplugged": true
},
"vite": {
"unplugged": true
},
"vite-tsconfig-paths": {
"unplugged": true
}
}
}