forked from LironEr/bundlemon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.2 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
{
"private": true,
"license": "MIT",
"scripts": {
"test-packages": "jest",
"build-packages": "lerna run build --stream",
"lint-packages": "lerna run lint --stream --parallel",
"lint-fix-packages": "lerna run lint:fix --stream --parallel",
"type-check-packages": "lerna run type-check --stream",
"start:service": "docker-compose -f docker-compose.dev.yml up --build",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/jest-when": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-when": "^3.4.2",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"typescript": "^4.6.4"
},
"engines": {
"yarn": "^1.10.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"workspaces": [
"packages/*",
"website",
"service",
"examples/*"
]
}