-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.23 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.23 KB
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
{
"name": "ideka",
"version": "1.0.0",
"description": "Nuxt.js + Vuetify.js project",
"author": "thomas <tp456@hotmail.fr>",
"private": true,
"config": {
"nuxt": {
"host": "0.0.0.0",
"port": "3000"
}
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"test": "jest --runInBand",
"generate": "nuxt generate"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^12.4.0",
"@ckeditor/ckeditor5-vue": "^1.0.0-beta.2",
"@fortawesome/fontawesome-svg-core": "^1.2.24",
"@fortawesome/free-brands-svg-icons": "^5.11.1",
"@fortawesome/free-regular-svg-icons": "^5.11.1",
"@fortawesome/free-solid-svg-icons": "^5.11.1",
"@fortawesome/vue-fontawesome": "^0.1.7",
"@nuxtjs/font-awesome": "^1.0.3",
"@nuxtjs/vuetify": "^1.8.5",
"babel-core": "^6.26.3",
"babel-jest": "^24.9.0",
"babel-preset-env": "^1.7.0",
"html2plaintext": "^2.1.2",
"jest-fetch-mock": "^2.1.2",
"js-cookie": "^2.2.1",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"node-fetch": "^2.5.0",
"nuxt": "^2.9.2",
"vue-i18n": "^8.14.1",
"vue-image-crop-upload": "^2.5.0",
"vue-jest": "^3.0.5",
"vuetify": "^2.0.18",
"vuetify-loader": "^1.3.0"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.29",
"babel-eslint": "^10.0.3",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2"
},
"jest": {
"moduleNameMapper": {
"^~/(.*)$": "<rootDir>/$1"
},
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"moduleDirectories": [
"node_modules"
],
"automock": false,
"setupFiles": [
"./setupJest.js"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**"
]
}
}