-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"name": "tact.kit",
"license": "AGPL-3.0-later",
"private": true,
"engines": {
"npm": "^9.0.0",
"node": "^18.0.0"
},
"scripts": {
"dev": "storybook dev -p 3000 -s public",
"build": "storybook build -s public",
"build-storybook": "npm run build",
"serve": "serve storybook-static",
"lint": "next lint",
"lint:fix": "next lint --dir . -- --fix",
"type-check": "tsc",
"chromatic": "./Taskfile chromatic --exit-zero-on-changes"
},
"pre-commit": [
"lint",
"type-check"
],
"dependencies": {
"@fortawesome/fontawesome-pro": "^6.4.2",
"@storybook/addon-essentials": "^7.3.2",
"@storybook/addon-interactions": "^7.3.2",
"@storybook/addon-links": "^7.3.2",
"@storybook/blocks": "^7.1.0",
"@storybook/nextjs": "^7.3.2",
"@storybook/react": "^7.1.1",
"next": "^13.4.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.3.2",
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@storybook/testing-library": "^0.2.0",
"@types/node": "^20.5.2",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.15",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"postcss": "^8.4.28",
"pre-commit": "^1.2.2",
"prettier": "^3.0.2",
"serve": "^14.2.1",
"typescript": "^5.1.6"
}
}