-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.77 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
{
"browserslist": [
"> 1%",
"last 2 version"
],
"devDependencies": {
"@cssninja/nuxt-toaster": "0.3.12",
"@mapbox/stylelint-processor-arbitrary-tags": "0.4.0",
"@nuxt/eslint-config": "0.2.0",
"@nuxtjs/eslint-config-typescript": "12.1.0",
"@nuxtjs/html-validator": "1.6.0",
"@pinia/nuxt": "0.5.1",
"@prisma/client": "5.10.2",
"@rushstack/eslint-patch": "1.6.1",
"@stylistic/eslint-plugin": "1.5.3",
"@stylistic/stylelint-config": "1.0.1",
"@types/clone-deep": "4.0.4",
"@types/jsonwebtoken": "9.0.5",
"@types/quill": "2.0.14",
"@vee-validate/nuxt": "4.12.5",
"@vee-validate/yup": "4.12.5",
"@vueform/multiselect": "2.6.6",
"autoprefixer": "10.4.16",
"bcrypt-ts": "5.0.1",
"clone-deep": "4.0.1",
"dayjs": "1.11.10",
"eslint": "8.56.0",
"eslint-plugin-perfectionist": "2.5.0",
"http-status-codes": "2.3.0",
"imagescript": "1.2.18",
"jsonwebtoken": "9.0.2",
"nanoid": "5.0.5",
"nuxt": "3.9.3",
"pinia": "2.1.7",
"postcss-html": "1.5.0",
"postcss-scss": "4.0.9",
"postcss-sort-media-queries": "5.2.0",
"pre-commit": "1.2.2",
"prisma": "5.10.2",
"quill": "1.3.7",
"sass": "1.69.7",
"stylelint": "16.1.0",
"stylelint-config-standard": "36.0.0",
"stylelint-order-htmlacademy": "2.1.0",
"typograf": "7.4.0",
"vue-draggable-plus": "0.4.0",
"vue-tsc": "1.8.27",
"yup": "1.3.3"
},
"pre-commit": [
"lint",
"add-staged"
],
"private": true,
"scripts": {
"add-staged": "git add .",
"build": "nuxt typecheck && nuxt build",
"dev": "nuxt dev",
"eslint": "eslint . --ext .vue,.js,.cjs,.ts --ignore-path .gitignore --fix --quiet",
"lint": "nuxt typecheck && npm run eslint && npm run stylelint",
"postinstall": "prisma generate && nuxt prepare",
"stylelint": "stylelint **/*.{scss,vue} --fix"
},
"type": "module"
}