-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 945 Bytes
/
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
{
"private": true,
"name": "optimal-root",
"scripts": {
"prepare": "beemo create-config",
"build": "packemon build --addEngines",
"pack": "NODE_ENV=production packemon pack --addEngines --declaration=standard",
"check": "yarn run type && yarn run test && yarn run lint",
"clean": "packemon clean",
"coverage": "yarn run test --coverage",
"docs": "cd website && yarn run start",
"lint": "beemo eslint",
"format": "beemo prettier",
"release": "yarn run pack && yarn run check && yarn beemo run-script lerna-release",
"test": "beemo jest",
"type": "beemo typescript --build"
},
"engines": {
"node": ">=12.17.0",
"npm": ">=6.13.0"
},
"devDependencies": {
"@beemo/cli": "^2.0.3",
"@beemo/core": "^2.1.1",
"@beemo/dev": "^1.6.3",
"@types/node": "^15.14.9",
"lerna": "^4.0.0",
"packemon": "^1.5.0"
},
"workspaces": [
"optimal/",
"website/"
]
}