-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "@l2beat/lz-monitoring",
"license": "MIT",
"private": true,
"engines": {
"node": "^18.0.0",
"yarn": ">=1.22.0 <2"
},
"scripts": {
"clean": "wsrun -recsm clean",
"build": "wsrun -recsm build",
"build:dependencies": "wsrun -p @lz/libs -recsm build",
"test": "wsrun -ecam test",
"format:fix": "wsrun -ecam format:fix",
"format": "wsrun -ecam format",
"lint:fix": "wsrun -ecam lint:fix",
"lint": "wsrun -ecam lint",
"typecheck": "wsrun -ecam typecheck",
"start": "cd packages/backend && yarn start",
"start:backend": "yarn start"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.1.2",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"earl": "^1.1.0",
"esbuild": "^0.17.19",
"esbuild-register": "^3.4.2",
"eslint": "^8.40.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"wsrun": "^5.2.4"
}
}