-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.81 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"commons/*"
],
"scripts": {
"start": "lerna run start --scope=server",
"build:dev": "cross-env NODE_ENV=development lerna run build",
"build:prd": "cross-env NODE_ENV=production lerna run build",
"build:watch": "npm run build && lerna run build:watch --parallel",
"build": "lerna run build --stream",
"lint": "lerna run lint --parallel",
"lint:fix": "lerna run lint:fix --parallel",
"test": "lerna run test --parallel",
"clean": "lerna run clean --parallel",
"package:publish": "lerna publish",
"package:init": "./scripts/init-package.sh",
"package:sort": "sort-package-json \"**/package.json\"",
"package:update": "lernaupdate",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.12.5",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"cross-env": "^7.0.3",
"deepmerge": "^4.2.2",
"eslint": "^7.29.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-monorepo": "^0.3.2",
"eslint-plugin-prettier": "^3.4.0",
"glob": "^7.1.7",
"gulp": "^4.0.2",
"gulp-changed": "^4.0.3",
"gulp-if": "^3.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.2",
"husky": "^7.0.0",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"lerna-update-wizard": "^0.17.8",
"pinst": "^2.1.6",
"prettier": "^2.3.2",
"sort-package-json": "^1.50.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=14",
"npm": ">=7"
}
}