-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.1 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
{
"name": "@shuvi/plugins",
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/shuvijs/plugins.git"
},
"scripts": {
"dev": "lerna run dev --stream --parallel",
"build": "lerna run build --stream",
"test": "echo 'todo test'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@testing-library/react": "^10.0.2",
"@types/jest": "^26.0.3",
"@types/puppeteer-core": "^2.0.0",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-test-renderer": "^16.9.2",
"@types/testing-library__react": "^10.0.1",
"husky": "^4.2.3",
"jest": "^26.1.0",
"lerna": "^3.18.4",
"lint-staged": "^10.1.2",
"lodash": "^4.17.15",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"shuvi": "0.0.1-beta.48",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
}
}