-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 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
{
"name": "root",
"private": true,
"scripts": {
"lerna:publish": "lerna publish from-package --yes",
"lint": "eslint --ext .js packages/",
"fix": "eslint --fix --ext .js packages/",
"test": "jest",
"release": "npm run lint && npm run test && npx lerna version",
"docs:dev": "vuepress dev docs-vuepress",
"docs:build": "vuepress build docs-vuepress"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@testing-library/jest-dom": "^4.2.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.9.0",
"eslint": "^5.10.0",
"eslint-config-babel": "^8.0.2",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-local-rules": "^0.1.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"lerna": "^3.4.3",
"vue": "^2.6.11",
"vuepress": "^1.4.0",
"typescript": "^4.1.0-beta"
}
}