forked from l2beat/l2beat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.82 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
{
"name": "l2beat",
"private": true,
"license": "MIT",
"engines": {
"node": "^18.0.0",
"yarn": ">=1.22.0 <2"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "wsrun -ecsm build",
"build:backend": "wsrun -p @l2beat/backend -recsm build",
"build:frontend": "wsrun -p @l2beat/frontend -recsm build",
"build:dependencies": "wsrun -p @l2beat/{shared-pure,shared,discovery,config} -recsm build",
"clean": "wsrun -ecam clean",
"fix": "yarn lint:fix && yarn format:fix",
"format": "wsrun -ecam format",
"format:fix": "wsrun -ecam format:fix",
"lint": "wsrun -ecam lint",
"lint:fix": "wsrun -ecam lint:fix",
"start": "cd packages/backend && yarn start",
"test": "wsrun -ecam test",
"test:exclude-backend": "wsrun -p @l2beat/{shared-pure,shared,discovery,config,frontend} -ecam test",
"typecheck": "wsrun -ecam typecheck",
"ci:check": "yarn clean && yarn build && yarn format && yarn lint && yarn typecheck && yarn test",
"heroku-postbuild": "yarn build:backend",
"checkout": "yarn clean && yarn && yarn build"
},
"devDependencies": {
"@sinonjs/fake-timers": "^10.0.2",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/sinonjs__fake-timers": "^8.1.2",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"earl": "^1.1.0",
"esbuild": "^0.14.43",
"esbuild-register": "^3.3.3",
"eslint": "^8.32.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"mocha": "^10.2.0",
"prettier": "^2.8.3",
"typescript": "^4.9.4",
"wait-for-expect": "^3.0.2",
"wsrun": "^5.2.4"
}
}