-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
executable file
·73 lines (73 loc) · 2.77 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
{
"name": "fantom-vue3-components",
"version": "0.37.17",
"description": "Library of various Vue 3 components with focus on accessibility",
"author": "Fantom Foundation",
"license": "MIT",
"repository": "git://github.com:Fantom-foundation/Fantom-Vue3-Components.git",
"files": [
"dist",
"src"
],
"main": "./src/index.js",
"module": "./src/index.js",
"scripts": {
"build": "vite build",
"test": "vitest run --environment jsdom",
"test:watch": "vitest --environment jsdom",
"test:report": "vitest run --environment jsdom --reporter json --outputFile test_results.json",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"storybook": "export NODE_OPTIONS=--openssl-legacy-provider && start-storybook -p 6006 --no-manager-cache",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"release": "standard-version",
"release:major": "standard-version --no-verify --release-as major",
"release:minor": "standard-version --no-verify --release-as minor",
"release:patch": "standard-version --no-verify --release-as patch",
"prepare": "husky install",
"template": "plop"
},
"dependencies": {
"@vueuse/core": "^8.5.0",
"jazzicon": "github:Fantom-foundation/jazzicon",
"nanoid": "^3.3.2",
"vue": "^3.2.29"
},
"devDependencies": {
"@babel/core": "^7.17.4",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@rushstack/eslint-patch": "^1.1.0",
"@storybook/addon-a11y": "^6.4.19",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.4.19",
"@storybook/addon-storysource": "^6.4.19",
"@storybook/storybook-deployer": "^2.8.11",
"@storybook/vue3": "^6.4.19",
"@vitejs/plugin-vue": "^2.1.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/test-utils": "^2.0.0-rc.18",
"babel-loader": "^8.2.3",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^7.0.4",
"jsdom": "^19.0.0",
"lint-staged": "^12.3.7",
"plop": "^3.1.1",
"prettier": "^2.5.1",
"sass": "^1.49.7",
"standard-version": "^9.3.2",
"storybook-addon-themes": "^6.1.0",
"storybook-builder-vite": "^0.1.15",
"storybook-rtl-addon": "^0.3.3",
"vite": "^2.7.13",
"vitest": "^0.34.1",
"vue-loader": "^16.8.3"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}