-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "bntp",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite build --watch",
"build": "tsc && vite build",
"lint": "eslint .",
"format": "prettier --write src",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"storycap": "storycap http://localhost:9009 --serverCmd 'storybook dev -p 9009'"
},
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@storybook/react": "^8.0.8",
"@storybook/react-vite": "^8.0.8",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@tsconfig/vite-react": "^3.0.1",
"@types/chrome": "0.0.280",
"@types/node": "20.17.6",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^9.0.0",
"eslint-plugin-react": "^7.34.1",
"jsdom": "^25.0.0",
"prettier": "3.3.3",
"storybook": "^8.0.8",
"storycap": "^5.0.0",
"typescript": "5.6.3",
"typescript-eslint": "^8.0.0",
"vite": "^5.1.6",
"vitest": "^2.0.0"
},
"packageManager": "[email protected]"
}