-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.71 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
{
"name": "l2beat",
"private": true,
"license": "MIT",
"engines": {
"node": "^16.0.0",
"yarn": ">=1.22.0"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build:backend": "wsrun -p @l2beat/backend -recsm build",
"build:frontend": "wsrun -p @l2beat/frontend -recsm build",
"build": "wsrun -ecsm build",
"build:dependencies": "wsrun -p @l2beat/{types,common,config,update-monitor} -recsm build",
"ci:check": "yarn clean && yarn build && yarn format && yarn lint && yarn typecheck:ci && yarn test",
"clean": "wsrun -ecam clean",
"fix": "yarn lint:fix && yarn format:fix",
"format:fix": "wsrun -ecam format:fix",
"format": "wsrun -ecam format",
"heroku-postbuild": "yarn build:backend",
"lint:fix": "wsrun -ecam lint:fix",
"lint": "wsrun -ecam lint",
"start": "cd packages/backend && yarn start",
"test": "wsrun -ecam test",
"typecheck:ci": "wsrun -ecam typecheck:ci",
"typecheck": "wsrun -ecam typecheck"
},
"devDependencies": {
"@sinonjs/fake-timers": "^9.1.2",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.41",
"@types/sinonjs__fake-timers": "^8.1.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"earljs": "^0.2.3",
"esbuild": "^0.14.43",
"esbuild-register": "^3.3.3",
"eslint": "^8.24.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-only-tests": "^3.0.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"typescript": "^4.7.3",
"wait-for-expect": "^3.0.2",
"wsrun": "^5.2.4"
}
}