-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.37 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.37 KB
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
{
"private": true,
"name": "beemo-dev",
"version": "0.0.0",
"scripts": {
"postinstall": "yarn run build",
"build": "packemon build --addEngines",
"pack": "NODE_ENV=production packemon pack --addEngines --declaration",
"check": "yarn run type && yarn run test && yarn run lint",
"format": "prettier --write .",
"lint": "eslint --cache --fix packages/*/{src,tests}/**/*.ts",
"test": "jest",
"type": "tsc --build",
"prerelease": "node scripts/releaseCheck.mjs && yarn run pack && yarn run check",
"release": "yarn prerelease && lerna version --conventional-commits --changelog-preset conventional-changelog-beemo --create-release github --push && lerna publish from-git",
"version": "yarn install && git add yarn.lock"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.18.9",
"@beemo/core": "^2.1.4",
"@beemo/driver-babel": "^2.0.6",
"@beemo/driver-eslint": "^2.0.5",
"@beemo/driver-jest": "^2.0.5",
"@beemo/driver-prettier": "^2.0.6",
"@beemo/driver-typescript": "^2.1.2",
"conventional-changelog-beemo": "^3.0.1",
"eslint": "^8.20.0",
"jest": "^28.1.3",
"jest-circus": "^28.1.3",
"lerna": "^5.2.0",
"packemon": "^2.3.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=12.17.0"
},
"packageManager": "yarn@3.2.0"
}