-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
103 lines (103 loc) · 3.03 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
{
"name": "@open-election-compass/client",
"version": "2.0.0-alpha.5",
"author": "Till Sanders <[email protected]>",
"license": "GPL-3.0",
"main": "dist/open-election-compass.umd.min.js",
"files": [
"/dist/",
"/src/locales",
"LICENSE",
"README.md"
],
"bugs": {
"url": "https://github.com/open-election-compass/client/issues"
},
"homepage": "https://open-election-compass.com",
"repository": {
"type": "git",
"url": "https://github.com/open-election-compass/client.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"preview": "vite preview --port 4173",
"test:unit": "vitest --environment jsdom",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lint:style": "stylelint **/*.{css,scss,vue}",
"serve": "vue-cli-service serve",
"build": "npm run build:demo && npm run build:lib && npm run build:nuxt",
"prerelease": "npm run build:lib",
"release": "np"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/vue-fontawesome": "^3.0.1",
"@open-election-compass/ui": "^0.13.1",
"@vee-validate/i18n": "^4.6.6",
"@vee-validate/rules": "^4.6.6",
"@vueuse/components": "^9.1.1",
"@vueuse/core": "^9.1.1",
"@wordpress/dom-ready": "^3.16.0",
"cross-fetch": "^3.1.5",
"get-user-locale": "^1.5.1",
"ie11-custom-properties": "^4.1.0",
"lodash": "^4.17.21",
"mitt": "^3.0.0",
"nanoid": "^4.0.0",
"peerjs": "^1.4.7",
"smoothscroll-polyfill": "^0.4.4",
"vee-validate": "^4.6.6",
"vue": "^3.2.37",
"vue-i18n": "^9.2.2",
"vue-tippy": "^6.0.0-alpha.62",
"vuex": "^4.0.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@commitlint/cli": "^17.1.1",
"@commitlint/config-conventional": "^17.1.0",
"@rushstack/eslint-patch": "^1.1.4",
"@types/jsdom": "^20.0.0",
"@types/node": "^18.7.13",
"@types/smoothscroll-polyfill": "^0.3.1",
"@vitejs/plugin-vue": "^3.0.3",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.0.2",
"@vue/tsconfig": "^0.1.3",
"babel-loader": "^8.2.5",
"eslint": "^8.23.0",
"eslint-plugin-vue": "^9.4.0",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"np": "^7.6.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"sass": "^1.54.5",
"stylelint": "^14.11.0",
"stylelint-a11y": "^1.2.3",
"stylelint-config-recommended-scss": "^7.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"typescript": "~4.8.2",
"vite": "^3.0.9",
"vitest": "^0.22.1",
"vue-loader": "^17.0.0",
"vue-tsc": "^0.40.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}