forked from Thinkmill/manypkg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.09 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": "@manypkg/repo",
"version": "1.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"test-gatsby"
],
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@changesets/changelog-github": "^0.4.1",
"@changesets/cli": "^2.5.0",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^26.0.4",
"@types/normalize-path": "^3.0.0",
"@types/parse-github-url": "^1.0.0",
"@types/semver": "^6.0.1",
"jest": "^26.1.0",
"jest-watch-typeahead": "^0.6.0",
"preconstruct": "^0.0.89",
"typescript": "^3.5.3"
},
"jest": {
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"preconstruct": {
"packages": [
"packages/!(gatsby)*"
]
},
"prettier": {
"proseWrap": "never"
},
"scripts": {
"postinstall": "preconstruct dev && manypkg check",
"release": "yarn preconstruct build && yarn changeset publish",
"test-gatsby": "cd test-gatsby && gatsby develop",
"test": "jest"
}
}