-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.73 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
{
"name": "@accentor/game",
"version": "0.1.0",
"author": "Team Accentor <[email protected]>",
"contributors": [
"Robbe Van Petegem <[email protected]>"
],
"license": "Hippocratic-2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "npm run lint:js && npm run lint:css",
"lint:fix": "npm run lint:js -- --fix && npm run lint:css -- --fix",
"lint:js": "eslint",
"lint:css": "stylelint '**/*.css' --ignore-path .gitignore"
},
"dependencies": {
"@accentor/api-client-js": "^0.21.0",
"@heroicons/vue": "^2.2.0",
"@vitejs/plugin-vue": "^5.2.1",
"lightningcss": "^1.28.2",
"pinia": "^2.2.8",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vue": "^3.5.13",
"vue-i18n": "^10.0.5",
"vue-qrcode-reader": "^5.5.11",
"vue-router": "^4.5.0",
"vue-tsc": "^2.1.10"
},
"devDependencies": {
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"prettier": "^3.4.1",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.2",
"typescript-eslint": "^8.16.0"
},
"stylelint": {
"extends": [
"stylelint-config-standard"
],
"plugins": [
"stylelint-prettier"
],
"rules": {
"declaration-no-important": true,
"prettier/prettier": true,
"selector-class-pattern": [
"^[a-z]+(:)?[a-z]+-?[a-z]*(__[0-9a-z]+-?[0-9a-z]*)?(--[0-9a-z]+-?[a-z]*)?$",
{
"resolveNestedSelectors": true,
"message": "Expected class selector to be BEM-style"
}
]
}
}
}