-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.94 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
{
"name": "vue-ari",
"version": "0.0.0-alpha.14",
"license": "MIT",
"repository": "https://github.com/visualjerk/ari",
"main": "lib/index.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"author": {
"name": "Jörg Bayreuther",
"url": "https://github.com/visualjerk"
},
"scripts": {
"lint": "eslint . --ext js,ts,tsx,vue --fix",
"test": "jest",
"dev": "yarn build --watch",
"build": "rollup -c",
"build:publish": "BUILD_WITH_TYPES=true yarn build",
"docs:deploy": "cd docs && yarn deploy"
},
"dependencies": {
"@popperjs/core": "2.11.2",
"body-scroll-lock": "3.0.3"
},
"peerDependencies": {
"vue": "^3.2.26"
},
"devDependencies": {
"@ant-design-vue/babel-plugin-jsx": "1.0.0-rc.1",
"@babel/core": "7.16.10",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-multi-entry": "4.1.0",
"@rollup/plugin-node-resolve": "13.1.3",
"@rollup/plugin-typescript": "8.3.0",
"@testing-library/dom": "8.11.2",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.4.0",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"@vue/compiler-sfc": "3.2.26",
"@vue/test-utils": "2.0.0-rc.18",
"babel-jest": " 27.4.6",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-vue": "8.3.0",
"husky": "7.0.4",
"jest": "27.4.7",
"lint-staged": "12.2.2",
"prettier": "2.5.1",
"rollup": "2.66.0",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-dts": "4.1.0",
"tslib": "2.3.1",
"typescript": "4.5.5",
"vue": "3.2.26"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"eslint --cache --fix",
"jest"
],
"*.{css,scss,md}": "prettier --write"
}
}