-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
87 lines (87 loc) · 1.9 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "kinopio-client",
"type": "module",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite",
"serve": "vite --host",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .js,.vue"
},
"dependencies": {
"@aguezz/qs-parse": "^2.0.0",
"@nozbe/microfuzz": "^1.0.0",
"adaptive-quadratic-curve": "^1.0.2",
"colord": "^2.9.3",
"dayjs": "^1.9.1",
"idb-keyval": "^6.2.1",
"lodash-es": "^4.17.15",
"macrolight": "^1.5.0",
"nanoid": "^3.1.31",
"overlap-area": "^1.0.0",
"randomcolor": "^0.5.4",
"shader": "^1.0.0",
"smartquotes": "^2.3.2",
"uuid": "^9.0.0",
"vue": "^3.5",
"vue-router": "^4.0.11",
"vuex": "^4.0.2"
},
"devDependencies": {
"@types/lodash-es": "^4.17.3",
"@vitejs/plugin-vue": "^5.0.0",
"@vue/compiler-sfc": "^3.2.6",
"@vue/eslint-config-standard": "^4.0.0",
"autoprefixer": "^10.4.2",
"babel-eslint": "^10.0.1",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^9.8.0",
"lint-staged": "^13.2.1",
"postcss": "^8.4.31",
"pug": "^3.0.3",
"stylus": "^0.63",
"stylus-loader": "^3.0.2",
"vite": "^5.4.6",
"vite-plugin-pwa": "^0.17.4",
"vite-plugin-sitemap": "^0.7.1",
"yorkie": "^2.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"rules": {
"no-throw-literal": "off",
"no-unused-vars": "off",
"vue/multi-word-component-names": "off",
"vue/no-reserved-component-names": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix"
]
}
}