-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.09 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
{
"name": "@project/root",
"version": "1.0.0",
"engines": {
"node": "18.x",
"yarn": "3.x"
},
"main": "index.js",
"type": "module",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"initialize": ".local/init.sh",
"prestart": "yarn install",
"start": "docker-compose up",
"lint": "eslint . --ext .ts,.js,.tsx",
"lint:fix": "eslint . --ext .ts,.js,.tsx --fix",
"build": "tsc --build",
"build:watch": "tsc --build --watch",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"postinstall": "husky install"
},
"dependencies": {
"@chyzwar/eslint-config": "^0.2.14",
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.52.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.{js,ts,tsx}": "yarn lint:fix"
},
"packageManager": "[email protected]"
}