-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 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
{
"name": "winestyle",
"version": "0.0.1",
"private": true,
"main": "dist/index.html",
"scripts": {
"dev": "vite --mode development",
"build": "vite build",
"preview": "vite preview",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"start:prod": "cross-env NODE_ENV=production node server/main",
"tailwind:watch": "cross-env TAILWIND_MODE=watch cross-env NODE_ENV=development postcss stories/tailwind.css -o dist/style.css -w",
"tailwind:build": "cross-env TAILWIND_MODE=build cross-env NODE_ENV=production postcss stories/tailwind.css -o dist/style.css",
"lint": "eslint \"./**/*.{js,ts,vue}\"",
"lint-fix": "eslint \"./**/*.{js,ts,vue}\" --fix",
"prettier-check": "npx prettier --check .",
"prettier-fix": "npx prettier --write ."
},
"dependencies": {
"vue": "^3.2.26"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@originjs/vite-plugin-require-context": "^1.0.9",
"@rollup/plugin-yaml": "3.1.0",
"@storybook/addon-actions": "^6.5.0-alpha.17",
"@storybook/addon-essentials": "^6.5.0-alpha.17",
"@storybook/addon-links": "^6.5.0-alpha.17",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^6.5.0-alpha.17",
"@storybook/builder-webpack5": "^6.5.0-alpha.17",
"@storybook/manager-webpack5": "^6.5.0-alpha.17",
"@storybook/preset-scss": "^1.0.3",
"@storybook/vue3": "^6.5.0-alpha.17",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vitejs/plugin-vue": "^2.0.0",
"@vue/compiler-sfc": "^3.2.26",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"babel-preset-vue": "^2.0.2",
"cross-env": "^7.0.3",
"cssnano": "^5.0.15",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.9.0",
"kill-port": "^1.6.1",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"pinia": "2.0.9",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.5",
"sass": "^1.48.0",
"sass-loader": "^12.4.0",
"tailwindcss": "^3.0.13",
"tailwindcss-debug-screens": "^2.2.1",
"typescript": "^4.2.4",
"vite": "^2.7.2",
"vite-plugin-eslint": "^1.3.0",
"vue-eslint-parser": "^8.0.1",
"vue-i18n": "9.1.9",
"vue-loader": "^16.8.3",
"vue-router": "4.0.12",
"vue-template-compiler": "^2.6.14",
"vue-tsc": "^0.29.8",
"webpack": "^5.66.0"
}
}