-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
49 lines (49 loc) · 1.65 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
{
"name": "darkforest-monorepo",
"private": true,
"license": "GPL-3.0",
"engines": {
"node": ">=16"
},
"workspaces": [
"packages/*",
"circuits",
"client",
"eth"
],
"scripts": {
"refs:prepare": "workspaces-to-typescript-project-references --tsconfigPath tsconfig.ref.json",
"eth:refs": "yarn workspace eth tsc --build tsconfig.ref.json",
"eth:compile": "yarn workspace eth compile",
"eth:prepare": "run-s eth:refs eth:compile",
"client:prepare": "yarn workspace client tsc --build tsconfig.ref.json",
"prepare": "run-s refs:prepare eth:prepare client:prepare",
"watch": "tsc --build eth/tsconfig.ref.json client/tsconfig.ref.json -w",
"test": "yarn workspaces run test",
"lint": "yarn workspaces run lint",
"clean": "yarn workspaces run clean",
"format": "yarn workspaces run format",
"docs": "lerna run --scope @darkforest_eth/* docs"
},
"devDependencies": {
"@monorepo-utils/workspaces-to-typescript-project-references": "^2.7.4",
"@projectsophon/eslint-plugin-typescript-enum": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"prettier-plugin-organize-imports": "^2.3.2",
"prettier-plugin-solidity": "=1.0.0-beta.19",
"typescript": "4.5.x"
},
"resolutions": {
"ganache-core": "npm:ganache@^7.0.3"
}
}