generated from druxt/module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.16 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
{
"name": "civictheme-vue",
"version": "0.0.0",
"keywords": [
"components",
"library",
"nuxt",
"theme",
"vue"
],
"exports": {
".": {
"require": "./dist/index.ssr.js",
"import": "./dist/index.esm.js"
},
"./nuxt/*": "./dist/nuxt/*",
"./components/*": "./dist/components/*",
"./mixins/*": "./dist/mixins/*"
},
"main": "dist/index.ssr.js",
"module": "dist/index.esm.js",
"files": [
"dist",
"templates"
],
"scripts": {
"build": "siroc build",
"build:watch": "siroc build --watch",
"changeset": "changeset",
"postinstall": "husky install",
"lint": "eslint --ext .js,.vue src",
"lint:commit": "commitlint",
"lint:renovate": "renovate-config-validator",
"storybook": "cd examples/nuxt && npx nuxt storybook",
"test": "yarn test:jest && yarn test:cypress",
"test:cypress": "cypress run --component test",
"test:cypress:open": "cypress open --component test",
"test:jest": "jest ./test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css,scss,vue}": "stylelint"
},
"dependencies": {
"@civictheme/uikit": "git+https://github.com/Realityloop/civictheme_library.git"
},
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/preset-env": "7.20.2",
"@changesets/cli": "2.25.2",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@frsource/cypress-plugin-visual-regression-diff": "^3.2.8",
"@vue/cli-service": "^5.0.8",
"@vue/test-utils": "1.3.3",
"axe-core": "^4.6.3",
"babel-core": "7.0.0-bridge.0",
"cypress": "^12.6.0",
"cypress-axe": "^1.3.0",
"druxt": "0.21.0",
"esbuild-jest": "0.5.0",
"eslint": "^8.32.0",
"eslint-plugin-nuxt": "4.0.0",
"husky": "^8.0.3",
"jest": "27.5.1",
"jest-junit": "^15.0.0",
"lint-staged": "^13.1.0",
"renovate": "^34.104.0",
"siroc": "0.16.0",
"stylelint": "^14.16.1",
"vue-jest": "3.0.7",
"vue-template-compiler": "2.7.16"
},
"peerDependencies": {
"@nuxtjs/svg": "^0.4.0"
},
"publishConfig": {
"access": "public"
}
}