-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "dydx-state-explorer",
"private": true,
"license": "MIT",
"engines": {
"node": "^16.0.0",
"yarn": ">=1.22.0 <2"
},
"workspaces": {
"packages": [
"packages/backend",
"packages/crypto",
"packages/encoding",
"packages/frontend",
"packages/shared",
"packages/state",
"packages/testnet",
"packages/types"
]
},
"scripts": {
"format": "wsrun -em format",
"format:fix": "wsrun -em format:fix",
"lint": "wsrun -em lint",
"lint:fix": "wsrun -em lint:fix",
"typecheck": "wsrun -em typecheck",
"test": "wsrun -ecsm test",
"build": "wsrun -etm build",
"build:dependencies": "wsrun -p @explorer/{crypto,encoding,shared,state,types,testnet,frontend} -etm build",
"clean": "wsrun -ecsm clean",
"start": "cd packages/backend && yarn start"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"earl": "^1.0.0-canary.20230331T135758",
"esbuild": "^0.14.42",
"esbuild-register": "^3.3.2",
"eslint": "^8.16.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"typescript": "^4.7.2",
"wsrun": "^5.2.4"
}
}