-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.33 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
{
"name": "typeddevs.com",
"description": "Main website of TypedDevs, meet those behind it and their projects.",
"repository": "[email protected]:TypedDevs/typeddevs.com.git",
"author": "TypedDevs <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview",
"stories": "storybook dev -p 6006",
"stories:build": "storybook build",
"stories:publish": "npx chromatic -b stories:build --no-interactive",
"lint": "eslint --ext .js,.ts,.vue .",
"lint:fix": "eslint --fix --ext .js,.ts,.vue .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"sa": "tsc",
"all:fix": "npm run lint:fix && npm run format:fix",
"pre-commit": "npm run sa && npm run lint && npm run format && npm run build",
"pre-commit:install": "echo 'npm run pre-commit' > .git/hooks/pre-commit && chmod u+x .git/hooks/pre-commit",
"pre-push": "npm run stories:publish",
"pre-push:install": "echo 'npm run pre-push' > .git/hooks/pre-push && chmod u+x .git/hooks/pre-push",
"postinstall": "npm run pre-commit:install && npm run pre-push:install"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.3.5",
"@eslint/js": "^9.2.0",
"@storybook/addon-essentials": "^8.0.10",
"@storybook/addon-interactions": "^8.0.10",
"@storybook/addon-links": "^8.0.10",
"@storybook/blocks": "^8.0.10",
"@storybook/test": "^8.0.10",
"@storybook/vue3": "^8.0.10",
"@storybook/vue3-vite": "^8.0.10",
"@vitejs/plugin-vue": "^5.0.4",
"chromatic": "^11.3.1",
"eslint": "^8.57.0",
"eslint-config-love": "^47.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vue": "^9.26.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-multiline-arrays": "^3.0.4",
"prettier-plugin-tailwindcss": "^0.5.14",
"sass": "^1.77.1",
"storybook": "^8.0.10",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0",
"vitepress": "^1.1.4",
"vue": "^3.4.27"
},
"postcss": {
"plugins": {
"tailwindcss": {}
}
}
}