-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
56
{
"name": "pagoda-console",
"version": "1.0.0",
"description": "Pagoda Console",
"engines": {
"node": "^16.0.0",
"npm": "^8.0.0"
},
"workspaces": [
"frontend",
"backend",
"database",
"common",
"cms",
"test",
"abi",
"eslint-rules",
"rpcaas-client"
],
"scripts": {
"prepare": "husky install",
"postinstall": "npm install turbo -D",
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint:check": "eslint --cache --max-warnings 0 . && cd database && npm run lint:check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/near/pagoda-console.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/near/pagoda-console/issues"
},
"homepage": "https://github.com/near/pagoda-console#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.24.0",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-custom-rules": "./eslint-rules",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-testing-library": "^5.6.4",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"turbo": "^1.8.3"
},
"dependencies": {
"immer": "^9.0.16"
}
}