-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "gotea",
"version": "1.0.0",
"private": true,
"description": "gotea front development tools configuration",
"author": "Kazuki Kamizuru",
"scripts": {
"biome": "biome format ./resources/assets",
"dev": "vite build --mode development --watch",
"lint": "run-p -c lint:*",
"lint:scripts": "npm run biome",
"lint:styles": "stylelint \"./resources/assets/styles/**/*.scss\" \"./resources/assets/scripts/**/*.vue\"",
"format": "run-p -c format:*",
"format:scripts": "npm run lint:scripts -- --write",
"format:styles": "npm run lint:styles -- --fix",
"test": "vitest",
"prod": "vite build"
},
"main": "resources/scripts/main.ts",
"dependencies": {
"axios": "^1.7.9",
"dayjs": "^1.11.13",
"pikaday": "^1.8.2",
"vue": "^3.5.13",
"vuex": "^4.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/pikaday": "^1.7.9",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/test-utils": "^2.4.6",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"postcss-html": "^1.7.0",
"postcss-scss": "^4.0.9",
"sass": "^1.83.1",
"stylelint": "^14.16.1",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-scss": "^5.3.2",
"typescript": "^5.7.3",
"vite": "^5.4.11",
"vite-plugin-biome": "^1.0.12",
"vite-plugin-stylelint": "^5.3.1",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20 <21"
},
"license": "MIT",
"type": "module"
}