forked from l2beat/l2beat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 800 Bytes
/
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
{
"name": "l2beat",
"private": true,
"license": "MIT",
"engines": {
"node": "^14.0.0",
"yarn": ">=1.22.0"
},
"workspaces": {
"packages": [
"backend",
"config",
"website"
]
},
"scripts": {
"format": "wsrun -ecsm format",
"format:fix": "wsrun -ecsm format:fix",
"lint": "wsrun -ecsm lint",
"lint:fix": "wsrun -ecsm lint:fix",
"typecheck": "wsrun -ecsm typecheck",
"test": "wsrun -ecsm test",
"build": "wsrun -ecsm build",
"build:mock": "MOCK_DATA=true yarn build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"wsrun": "^5.2.4"
}
}