-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "strikeorsike",
"workspaces": [
"client",
"server",
"common"
],
"version": "1.0.0",
"engines": {
"node": ">=20.9.0",
"npm": ">=10.1.0"
},
"scripts": {
"test:typecheck": "vue-tsc --build",
"test:lint": "eslint --ext .ts,.vue ./",
"test:unit": "npm run test:unit --workspaces --if-present",
"lint:fix": "eslint --fix --ext .ts,.vue ./",
"format": "prettier --write ./",
"build": "npm run build --workspaces --if-present",
"start": "node dist/js/src/server-bundle.js"
},
"devDependencies": {
"@babel/types": "^7.23.6",
"@intlify/eslint-plugin-vue-i18n": "^2.0.0",
"@rushstack/eslint-patch": "^1.6.1",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-vue": "^9.19.2",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"vue-tsc": "^1.8.27"
}
}