forked from nuxt/typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 792 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 792 Bytes
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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"lint": "eslint --ext .ts,.tsx,.js,.vue .",
"lint:fix": "yarn lint --fix",
"test": "yarn lint && yarn test:unit && yarn test:types",
"test:types": "tsc -p packages/types/test",
"test:unit": "jest"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/jest": "latest",
"@vue/composition-api": "latest",
"codecov": "latest",
"eslint": "latest",
"husky": "latest",
"jest": "latest",
"lerna": "latest",
"nuxt-edge": "latest",
"ts-jest": "latest",
"typescript": "~3.6",
"vue-property-decorator": "latest"
}
}