-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
46 lines (46 loc) · 1.42 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
{
"name": "buildchain",
"description": "A drop-in buildchain for using Vite in your Craft CMS plugins or modules",
"type": "module",
"author": {
"email": "[email protected]",
"name": "nystudio107",
"url": "https://nystudio107.com"
},
"dependencies": {
"vue": "^3.2.0",
"vue-confetti": "^2.0.8"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@types/node": "^20.0.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/compiler-sfc": "^3.2.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.0.0",
"eslint-plugin-vue": "^8.0.0",
"postcss": "^8.4.0",
"rollup-plugin-visualizer": "^5.0.0",
"stylelint": "^14.0.0",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-config-recommended-vue": "^1.0.0",
"tailwindcss": "^3.0.0",
"vite": "^5.0.0",
"vite-plugin-compression": "^0.5.0",
"vite-plugin-eslint": "^1.8.0",
"vite-plugin-externals": "^0.6.0",
"vite-plugin-restart": "^0.4.0",
"vite-plugin-stylelint": "^5.2.1",
"vue-eslint-parser": "^8.0.0"
},
"scripts": {
"dev": "vite",
"build": "npm run lint && vite build",
"lint": "npm run lint:ts && npm run lint:js && npm run lint:css",
"lint:ts": "tsc --noEmit",
"lint:js": "eslint './src/**/*.{js,ts,vue}' --fix",
"lint:css": "stylelint './src/**/*.{css,vue}' --fix"
}
}