-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.62 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "boilerplate",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --max-warnings=0",
"preview": "vite preview",
"preinstall": "npx only-allow pnpm",
"format": "prettier --cache --write",
"prepare": "husky install",
"commitlint": "commitlint --edit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest --ui",
"test-background": "vitest",
"test-feature": "playwright test --project=chromium",
"scaffold": "node ./scaffold/index.js"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@react-three/drei": "^9.79.4",
"@react-three/fiber": "^8.13.5",
"@types/three": "^0.154.0",
"danfojs": "1.1.1",
"modern-normalize": "^2.0.0",
"radash": "^11.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"seedrandom": "^3.0.5",
"three": "^0.154.0",
"vite-plugin-pwa": "^0.16.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@inquirer/input": "^1.2.5",
"@playwright/test": "^1.36.1",
"@react-three/test-renderer": "^8.2.0",
"@storybook/addon-essentials": "^7.1.0",
"@storybook/addon-interactions": "^7.1.0",
"@storybook/addon-links": "^7.1.0",
"@storybook/blocks": "^7.1.0",
"@storybook/react": "^7.1.0",
"@storybook/react-vite": "^7.1.0",
"@storybook/testing-library": "^0.2.0",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/testing-library__jest-dom": "^5.14.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"@vitest/ui": "^0.33.0",
"autoprefixer": "^10.4.14",
"chalk": "^5.3.0",
"clsx": "^2.0.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.3.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.3",
"postcss": "^8.4.26",
"postcss-nesting": "^12.0.0",
"prettier": "3.0.0",
"storybook": "^7.1.0",
"typescript": "^5.0.2",
"vite": "^4.4.0",
"vite-plugin-svgr": "^3.2.0",
"vitest": "^0.33.0"
}
}