This repository has been archived by the owner on Dec 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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
{
"name": "nuxt-ts-template",
"version": "1.4.4",
"description": "Template",
"author": "nogic",
"private": true,
"license": "MIT",
"engines": {
"node": ">=14",
"yarn": "^1.22.4"
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"fix": "run-p \"lint:eslint --fix\" \"lint:prettier --write\"",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext .ts,.vue --ignore-path .gitignore .",
"lint:prettier": "prettier --ignore-path .gitignore -l \"**/*.{json,yaml,yml,ts,vue}\"",
"lint:tsc": "vue-tsc",
"test": "jest"
},
"dependencies": {
"@nuxtjs/composition-api": "^0.32.0",
"@nuxtjs/i18n": "^7.3.0",
"@nuxtjs/pwa": "^3.3.5",
"@oruga-ui/oruga": "^0.5.9",
"@oruga-ui/theme-bulma": "^0.2.8",
"flag-icons": "^6.6.6",
"nuxt": "^2.15.8"
},
"devDependencies": {
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@vue/runtime-dom": "^3.2.45",
"@vue/test-utils": "^1.3.3",
"@vue/vue2-jest": "^29.2.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"npm-run-all2": "^5.0.2",
"prettier": "^2.8.0",
"sass": "^1.56.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"vue-i18n-jest": "^1.1.1",
"vue-tsc": "^1.0.9"
},
"resolutions": {
"@types/babel__core": "^7.1.14",
"@types/connect": "^3.4.35",
"@types/node": "^12.20.12",
"@types/serve-static": "^1.13.9",
"@types/webpack": "^4.41.29",
"chokidar": "^3.5.2"
}
}