forked from Daryl-L/ckbstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.16 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
{
"name": "ckbstats",
"version": "1.0.0",
"main": "index.js",
"author": "daryl <sai9375@hotmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"server": "yarn workspace @ckbstats/server start",
"agent": "yarn workspace @ckbstats/agent start",
"ui": "yarn workspace @ckbstats/ui start",
"lint:ui": "yarn workspace @ckbstats/ui run lint",
"lint:server": "eslint --format=pretty -c .eslintrc.js packages/server/src --ext ts,js",
"lint:ui:fix": "yarn workspace @ckbstats/ui run lint --fix",
"lint:server:fix": "eslint --format=pretty -c .eslintrc.js packages/server/src --ext ts,js --quiet --fix",
"lint": "yarn lint:ui && yarn lint:server",
"lint:fix": "yarn lint:ui:fix && yarn lint:server:fix",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^18.11.7",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lerna": "^6.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}