-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.93 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": "toy-ui",
"version": "0.0.0",
"main": "index.js",
"description": "Toy-ui Library for Vue3",
"repository": "[email protected]:decadehew/toy-ui.git",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite",
"test": "jest",
"cz": "git add -A && npx git-cz",
"gen": "bash ./scripts/gc.sh",
"storybook": "start-storybook",
"bootstrap": "yarn && npx lerna bootstrap",
"lint": "eslint ./packages --ext .vue,.js,.ts",
"build": "yarn bootstrap && yarn build-storybook"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.10.5",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@storybook/addon-storysource": "^5.3.19",
"@storybook/html": "^5.3.19",
"@swc-node/jest": "^0.1.9",
"@types/jest": "^26.0.7",
"@types/lodash-es": "^4.17.3",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"@vue/compiler-sfc": "^3.0.0-rc.1",
"babel-loader": "^8.1.0",
"babel-preset-vue": "^2.0.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.5.0",
"eslint-plugin-vue": "^7.0.0-beta.o",
"husky": "^4.2.5",
"jest": "^24.1.0",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"ts-loader": "^8.0.1",
"typescript": "^3.9.7",
"vite": "^1.0.0-rc.1",
"vue-jest": "5.0.0-alpha.1",
"vue-loader": "^v16.0.0-beta.4",
"vue-router": "^4.0.0-beta.4"
},
"peerDependencies": {
"vue": "^3.0.0-rc.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push-todo-open": "npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix"
},
"dependencies": {
"@popperjs/core": "^2.4.4",
"lodash-es": "^4.17.15",
"mitt": "^3.0.0"
}
}