-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.04 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
65
{
"name": "jmdk",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"prepare": "husky install"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"include-media": "^2.0.0",
"model-vue-presenter": "^1.0.6",
"vue": "^3.2.41",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-typescript": "^7.21.4",
"@rushstack/eslint-patch": "^1.1.4",
"@storybook/addon-actions": "^7.0.6",
"@storybook/addon-essentials": "^7.0.6",
"@storybook/addon-interactions": "^7.0.6",
"@storybook/addon-links": "^7.0.6",
"@storybook/testing-library": "^0.2.2",
"@storybook/vue3": "^7.0.6",
"@storybook/vue3-vite": "^7.0.6",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@vitejs/plugin-vue": "^4.5.2",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.3",
"@vue/tsconfig": "^0.5.1",
"babel-loader": "^9.1.3",
"eslint": "^8.22.0",
"eslint-plugin-prettier": "^5.1.1",
"eslint-plugin-storybook": "^0.6.11",
"eslint-plugin-vue": "^9.3.0",
"husky": "^8.0.3",
"jsdom": "^23.0.1",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.56.1",
"storybook": "^7.0.6",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^1.1.0",
"vue-loader": "^17.3.1",
"vue-tsc": "^1.0.8"
}
}