-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.39 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
{
"name": "@markings/repo",
"version": "1.0.0",
"private": true,
"license": "MIT",
"repository": "https://github.com/Thinkmill/markings",
"dependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@changesets/changelog-github": "^0.2.1",
"@changesets/cli": "^2.5.2",
"@manypkg/cli": "^0.13.0",
"@preconstruct/cli": "^2.0.1",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^25.1.3",
"jest": "^25.1.0",
"jest-watch-typeahead": "^0.4.2",
"typescript": "^3.8.3"
},
"jest": {
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"preconstruct": {
"packages": [
"packages/*"
],
"distFilenameStrategy": "unscoped-package-name"
},
"prettier": {},
"scripts": {
"preinstall": "node -e \"!process.env.npm_config_user_agent.startsWith('pnpm/') && !console.log('Use https://pnpm.js.org/ to install dependencies in this repository\\n') && process.exit(1)\"",
"postinstall": "preconstruct dev && manypkg check",
"version": "changeset version && pnpm install --frozen-lockfile=false",
"release": "preconstruct build && changeset publish",
"start": "cd test-project && pnpm run start",
"test": "jest",
"types": "tsc"
}
}