-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.18 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
{
"name": "plinth-ui",
"main": "index.js",
"author": "Trevor Rice <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"playground": "yarn workspace @plinth-ui/playground serve",
"playground:build": "yarn workspace @plinth-ui/playground build",
"build": "yarn workspaces run build",
"test": "jest",
"publish": "lerna publish"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-typescript": "^8.1.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/vue": "^6.1.0",
"@types/jest": "^26.0.19",
"@types/jest-axe": "^3.5.1",
"@vue/test-utils": "^2.0.0-beta.10",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-vue": "^7.1.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-axe": "^4.1.0",
"lerna": "^3.22.1",
"prettier": "2.1.2",
"rollup": "^2.35.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"peerDependencies": {
"vue": "^3.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}