-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.87 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
{
"name": "template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006 --no-open",
"build-storybook": "storybook build",
"scaffold": "scaffdog generate",
"check": "run-p check:*",
"check-ci": "run-p \"check:!(tsc)\"",
"check:lint": "next lint",
"check:tsc": "tsc --incremental false",
"check:fmt": "npx dprint check",
"fix": "run-s fix:{lint,fmt}",
"fix:lint": "next lint --fix",
"fix:fmt": "npx dprint fmt"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@types/node": "20.9.2",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"autoprefixer": "10.4.16",
"dprint": "^0.43.2",
"eslint": "8.53.0",
"eslint-config-next": "14.0.3",
"next": "14.2.15",
"postcss": "8.4.32",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.7",
"typescript": "5.3.2"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^7.6.17",
"@storybook/nextjs": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/testing-library": "^0.2.2",
"@tsconfig/strictest": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-unused-imports": "^3.0.0",
"lefthook": "^1.9.0",
"npm-run-all": "^4.1.5",
"scaffdog": "^3.0.0",
"storybook": "^7.6.17",
"styled-jsx": "^5.1.6"
}
}