-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1010 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 1010 Bytes
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
{
"version": "0.0.0",
"private": true,
"engines": {
"yarn": "^1.10.1"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"babel-core": "^7.0.0-bridge.0",
"typescript": "^3.6.4"
},
"scripts": {
"build": "plugnet-dev-build-ts && (cd packages/dev && copyfiles config/* scripts/* skeleton/* build) && (cd packages/dev-react && copyfiles config/* scripts/* skeleton/* build)",
"docs": "plugnet-dev-build-docs",
"check": "yarn lint",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx && tsc --noEmit --pretty",
"clean": "plugnet-dev-clean-build",
"plugnet-dev-version-beta": "./packages/dev/scripts/plugnet-dev-version-beta.sh",
"plugnet-dev-version-minor": "./packages/dev/scripts/plugnet-dev-version-minor.sh",
"plugnet-dev-version-patch": "./packages/dev/scripts/plugnet-dev-version-patch.sh",
"postinstall": "./packages/dev/scripts/plugnet-dev-yarn-only.js",
"test": "jest --coverage"
},
"devDependencies": {
"copyfiles": "^2.1.1"
}
}