-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.73 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
{
"name": "leichteckig",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"lint": "eslint --ext .js,.vue .",
"lint:fix": "eslint --ext .js,.vue . --fix",
"lint:ci": "eslint --output-file eslint_report.json --format json --ext .js,.vue . ",
"start": "nuxt start",
"generate": "nuxt generate",
"test": "jest",
"jest": "jest",
"jest:clear": "jest --clearCache",
"jest:watch": "jest --watch --no-cache --coverage",
"cy:run": "./node_modules/.bin/cypress run",
"cy:open": "./node_modules/.bin/cypress open",
"build:modern": "nuxt build --modern=server",
"start:modern": "nuxt start --modern=server"
},
"dependencies": {
"@nuxt/content": "^1.15.0",
"@nuxt/types": "^2.15.8",
"@nuxtjs/color-mode": "^2.1.1",
"@nuxtjs/google-fonts": "^2.0.0",
"@nuxtjs/i18n": "7.3.1",
"@nuxtjs/robots": "^2.5.0",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/svg": "^0.4.0",
"@vue/vue2-jest": "^27.0.0-alpha.4",
"@vueuse/core": "^10.9.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-nuxt": "^3.1.0",
"glob-parent": "5.1.2",
"jwt-decode": "^3.1.2",
"loader-utils": "2.0.4",
"nuxt": "2.17.3",
"parse-path": "5.0.0",
"parse-url": "8.1.0",
"postcss": "^8.4.39",
"xml2js": "0.5.0"
},
"devDependencies": {
"@percy/cli": "^1.0.0-beta.74",
"@percy/cypress": "^3.1.1",
"@vue/test-utils": "^1.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.4.6",
"cypress": "10.10.0",
"cypress-grep": "^2.13.1",
"jest": "^27.4.7",
"sass": "^1.49.0",
"sass-loader": "^10.2.0",
"sinon": "^12.0.1",
"vue-jest": "^3.0.7"
}
}