-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.35 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
{
"name": "nuxt-starter-template",
"version": "1.1.0",
"scripts": {
"dev": "yarn clear:cache && nuxt",
"build": "yarn clear:cache && nuxt build",
"start": "nuxt start",
"generate": "yarn clear:cache && nuxt generate",
"clear:nuxtcache": "rm -fR node_modules/.cache/nuxt",
"clear:dist": "rm -fR node_modules/.cache/nuxt",
"clear:cache": "yarn clear:dist && yarn clear:nuxtcache",
"lint": "yarn lint:js && yarn lint:css",
"lint:css": "stylelint --syntax scss */**/*.scss",
"lint:js": "eslint \"*/**/*.{vue,js}\"",
"format": "yarn format:js && yarn format:css",
"format:js": "prettier --write \"*/**/**/**/*.{vue,js}\"",
"format:css": "stylelint --fix --syntax scss */**/*.scss",
"storybook": "yarn nuxt storybook -s static",
"storybook:build": "yarn nuxt storybook build -s static",
"test:unit": "jest \"(\\w)/(\\w)+/(\\w)+.(spec|test).js\" --detectOpenHandles --forceExit",
"test:unit:coverage": "jest \"(\\w)/(\\w)+/(\\w)+.(spec|test).js\" --detectOpenHandles --verbose --coverage --forceExit"
},
"engines": {
"node": "12.22.0"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^29.1.0",
"@ckeditor/ckeditor5-vue2": "^1.0.5",
"@nuxtjs/apollo": "^4.0.1-rc.5",
"@nuxtjs/axios": "^5.12.2",
"@nuxtjs/svg-sprite": "^0.5.2",
"buttono": "^1.0.2",
"core-js": "^3.6.5",
"get-formatted-date": "^1.0.3",
"graphql-tag": "^2.12.4",
"nuxt": "^2.14.6",
"nuxt-helper-json": "^1.0.0",
"nuxt-i18n": "^6.27.1",
"nuxt-lazy-load": "^1.2.4",
"remove": "^0.1.5",
"tippy.js": "^6.3.1",
"vee-validate": "^3.4.5",
"vue-clipboard2": "^0.3.1",
"vue-select": "^3.11.2",
"vue-toast-notification": "^0.6.1",
"vue2-datepicker": "^3.9.0"
},
"devDependencies": {
"@atolye15/stylelint-config": "^1.3.1",
"@nuxtjs/storybook": "^3.3.1",
"@vue/cli-plugin-unit-jest": "^4.5.12",
"@vue/test-utils": "^1.1.4",
"babel-eslint": "^10.1.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.4.1",
"jest": "^26.6.3",
"node-sass": "^5.0.0",
"prettier": "^2.2.1",
"sass-loader": "^10.1.0",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-prettier": "^1.1.2",
"vue-jest": "^3.0.7"
}
}