-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 3.44 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "openEBench-nuxt",
"version": "1.1.2",
"private": true,
"author": "Dominik Brüchner <[email protected]>, José Mª Fernández <[email protected]>",
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"generate:gh-pages": "DEPLOY_ENV=GH_PAGES nuxt generate --fail-on-page-error",
"lint:js": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore . --debug",
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
"lint:prettier": "prettier --check .",
"lint": "npm run lint:js && npm run lint:style && npm run lint:prettier",
"lintfix": "prettier --write --list-different . && npm run lint:js -- --fix && npm run lint:style -- --fix",
"prepare": "husky install",
"test:unit": "jest",
"test:unit:ci": "npm run test:unit -- --coverage --ci",
"test:unit:file": "npm run test:unit -- --bail --findRelatedTests",
"test:unit:watch": "npm run test:unit -- --watch --notify --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache",
"*.{css,scss,sass,html,vue}": "stylelint",
"*.**": "prettier --check --ignore-unknown"
},
"dependencies": {
"@inb/oeb-classification-table": "^1.3.4",
"@inb/oeb-widgets": "^1.1.0",
"@nuxtjs/auth-next": "^5.0.0-1648802546.c9880dc",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/robots": "^2.5.0",
"core-js": "^3.22.6",
"data-urls": "^5.0.0",
"dompurify": "^2.5.5",
"file-loader": "^6.2.0",
"gsap": "^3.10.4",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"marked": "^4.0.16",
"nuxt": "^2.15.8",
"plotly.js-dist": "^2.32.0",
"pluralize": "^8.0.0",
"url-loader": "^4.1.1",
"vue": "^2.6.14",
"vue-axios": "^3.5.2",
"vue-code-highlight": "^0.7.8",
"vue-cookie-law": "^1.13.3",
"vue-fragment": "^1.5.2",
"vue-observe-visibility": "^1.0.0",
"vue-server-renderer": "^2.6.14",
"vuetify": "^2.6.6",
"vuex-cache": "^3.5.0",
"whatwg-encoding": "^3.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^10.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/stylelint-module": "^4.1.0",
"@nuxtjs/svg": "^0.4.0",
"@nuxtjs/vuetify": "^1.12.3",
"@socheatsok78/storybook-addon-vuetify": "^0.1.9",
"@storybook/addon-actions": "^6.4.20",
"@storybook/addon-docs": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/vue": "^6.5.9",
"@vue/test-utils": "^1.3.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-storybook": "^0.5.13",
"eslint-plugin-vue": "^8.6.0",
"husky": "^8.0.1",
"jest": "^27.5.1",
"jest-raw-loader": "^1.0.1",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^12.4.1",
"node-notifier": "^10.0.1",
"postcss-html": "^1.5.0",
"prettier": "^2.7.1",
"stylelint": "^14.8.5",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^26.0.0",
"ts-jest": "^27.1.4",
"typescript": "^4.7.4",
"vue-jest": "^3.0.4",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.14",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
}
}