-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 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
{
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "pnpm -C playground dev",
"docs": "pnpm -C docs dev",
"typecheck:web": "vue-tsc -p tsconfig.web.json --composite false --noEmit",
"typecheck:play": "vue-tsc -p tsconfig.play.json --composite false --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@iconify/vue": "^4.0.0",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@vue/test-utils": "^2.2.4",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^9.7.0",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"sass": "^1.56.1",
"typescript": "^4.9.3",
"vue": "^3.2.45"
},
"dependencies": {
"@soft-ui/components": "workspace:*",
"@soft-ui/theme": "workspace:*",
"@soft-ui/utils": "workspace:*"
},
"lint-staged": {
"*.{js,ts,vue}": [
"prettier --write",
"eslint --fix"
],
"*.{css,scss,md}": "prettier --write"
}
}