This repository was archived by the owner on May 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.95 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.95 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
{
"name": "app",
"version": "1.0.0",
"description": "Kalaxia game front",
"scripts": {
"test": "jest --runInBand",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kalaxia/game-front.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kalaxia/game-front/issues"
},
"homepage": "https://github.com/Kalaxia/game-front#readme",
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^6.26.3",
"babel-jest": "^24.9.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.6",
"css-loader": "^3.0",
"file-loader": "^2.0.0",
"jest": "^24.9.0",
"jest-fetch-mock": "^2.1.2",
"less": "^3.10.3",
"less-loader": "^4.1.0",
"terser-webpack-plugin": "^1.4.1",
"vue-i18n": "^8.14.1",
"vue-jest": "^3.0.5",
"vue-loader": "^15.7.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.8"
},
"dependencies": {
"@nuxtjs/pwa": "^3.0.0-beta.19",
"chart.js": "^2.8.0",
"gsap": "^2.1.3",
"js-cookie": "^2.2.1",
"nuxt": "^2.9.2",
"nuxt-env": "^0.1.0",
"vue": "^2.6.10",
"vue-router": "^3.1.3",
"vuex": "^3.1.1"
},
"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/**"
]
}
}