This repository has been archived by the owner on Nov 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.19 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
{
"name": "country-compare",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "cross-env ROUTER_BASE=country-comparator-trivia nuxt generate",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:style && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix && yarn lint:style --fix",
"prepare": "husky install",
"test": "jest"
},
"lint-staged": {
"*.{js,vue}": "eslint --cache",
"*.{css,scss,sass,html,vue}": "stylelint",
"*.**": "prettier --check --ignore-unknown"
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/pwa": "^3.3.5",
"@picocss/pico": "^1.5.0",
"chart.js": "3.7.1",
"chartjs": "^0.3.24",
"chota": "^0.8.0",
"core-js": "^3.22.2",
"d3": "^7.4.4",
"nuxt": "^2.15.8",
"spectre.css": "^0.5.9",
"topojson": "^3.0.2",
"vue": "^2.6.14",
"vue-chartjs": "^4.0.7",
"vue-server-renderer": "^2.6.14",
"vue-template-babel-compiler": "^1.2.0",
"vue-template-compiler": "^2.6.14",
"webpack": "^4.46.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@nuxtjs/eslint-config": "^9.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/stylelint-module": "^4.1.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/vue": "^5.8.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"cross-env": "^7.0.3",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-vue": "^8.7.1",
"husky": "^7.0.4",
"jest": "^26.6.3",
"lint-staged": "^12.4.0",
"postcss-html": "^1.4.1",
"prettier": "^2.6.2",
"sass": "^1.51.0",
"sass-loader": "^10.1.1",
"stylelint": "^14.7.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^25.0.0",
"vue-jest": "^3.0.7",
"vue-svg-loader": "^0.16.0"
}
}