-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.9 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.9 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
{
"name": "chin-da",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"test:ui": "vitest --ui"
},
"lint-staged": {
"**/*.{js, jsx, ts, tsx}": [
"eslint",
"prettier --config ./.prettierrc --write -u"
]
},
"dependencies": {
"@stitches/react": "^1.2.8",
"@types/node": "20.4.4",
"@types/qrcode": "^1.5.1",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@vitest/ui": "^0.34.1",
"eslint": "8.45.0",
"next": "13.4.12",
"qrcode": "^1.5.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.1.6"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@storybook/addon-essentials": "^7.2.1",
"@storybook/addon-interactions": "^7.2.1",
"@storybook/addon-links": "^7.2.1",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.2.1",
"@storybook/nextjs": "^7.2.1",
"@storybook/react": "^7.2.1",
"@storybook/testing-library": "^0.2.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@vitejs/plugin-react": "^4.0.4",
"eslint-config-next": "13.4.12",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^8.0.0",
"jsdom": "^22.1.0",
"prettier": "^3.0.1",
"storybook": "^7.2.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.1"
}
}