forked from Schroedinger-Hat/schroedinger-hat-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·55 lines (55 loc) · 1.52 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
{
"name": "schroedinger-hat-web",
"type": "module",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.1.0",
"npm": ">=10.2.3"
},
"scripts": {
"build": "vite build",
"cy:o": "cypress open",
"dev": "vite --host",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:scss": "stylelint \"./**/*.{css,scss,sass,vue}\"",
"serve": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"vue-build": "vue-tsc --noEmit && vite build",
"vue-check": "vue-tsc --noEmit",
"vue-dts": "vue-tsc --declaration --emitDeclarationOnly"
},
"dependencies": {
"@unhead/vue": "^1.7.4",
"@unocss/reset": "^0.58.0",
"@vueuse/core": "^10.1.0",
"cypress": "^13.6.1",
"register-service-worker": "^1.7.2",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@antfu/eslint-config": "^2.4.5",
"@iconify/vue": "^4.1.1",
"@types/node": "^20.4.8",
"@unocss/preset-attributify": "^0.58.0",
"@unocss/preset-icons": "^0.58.0",
"@unocss/preset-uno": "^0.58.0",
"@unocss/preset-web-fonts": "^0.58.0",
"@vitejs/plugin-vue": "^4.0.0",
"eslint": "^8.32.0",
"sass": "^1.49.9",
"stylelint": "^15.6.2",
"stylelint-config-idiomatic-order": "^9.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard-scss": "^9.0.0",
"typescript": "^5.0.4",
"unocss": "^0.58.0",
"vite": "^5.0.8",
"vitest": "^1.1.0",
"vue": "^3.4.3",
"vue-tsc": "^1.8.27"
}
}