-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.26 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
{
"name": "@untitled-docs/repo",
"version": "1.0.0",
"license": "MIT",
"private": true,
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.22.0",
"@manypkg/cli": "^0.9.0",
"@preconstruct/cli": "^1.1.4",
"@types/jest": "^26.0.0",
"@types/react": "^16.9.34",
"babel-jest": "^26.0.1",
"csstype": "^2.6.8",
"jest": "^26.0.1",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
"typescript": "^3.7.5"
},
"scripts": {
"preinstall": "node -e \"!process.env.npm_config_user_agent.startsWith('pnpm/') && !console.log('Use \\`npx pnpm install\\` to install dependencies in this repository\\n') && process.exit(1)\"",
"postinstall": "preconstruct dev && manypkg check",
"build": "preconstruct build",
"release": "pnpm run build && changeset publish",
"test": "jest",
"version": "changeset version && pnpm i --frozen-lockfile=false"
},
"preconstruct": {
"packages": [
"packages/*"
],
"___experimentalFlags_WILL_CHANGE_IN_PATCH": {
"newEntrypoints": true
}
}
}