-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
54 lines (54 loc) · 1.66 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
{
"name": "@ctf/mono",
"version": "1.0.0",
"author": "Dror Tirosh <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "lerna run compile && CI=true lerna run --stream start",
"build": "lerna run compile && lerna run build",
"start-prod": "yarn build && serve ./workspaces/react-app/build",
"deploy": "lerna run deploy --",
"verify": "lerna run verify --",
"evm": "CI=true lerna run --stream --no-prefix node",
"gsn": "npx gsn start",
"clean": "lerna run clean",
"lint": "lerna run lint --stream --parallel"
},
"workspaces": [
"workspaces/*"
],
"dependencies": {
"patch-package": "^6.4.7",
"typescript": "^4.3.5"
},
"devDependencies": {
"react-app-rewired": "^2.2.1",
"babel-eslint": "^10.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"ethers-v6": "npm:ethers@^6.7.0",
"ethers-v6/providers": "npm:ethers@^6.7.0",
"ethers-v6/contract": "npm:ethers@^6.7.0",
"@opengsn/cli": "^3.0.0-beta.10",
"yarn-audit-fix": "^9.3.8",
"depcheck": "^1.4.3",
"hardhat": "^2.4.3",
"lerna": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint-config-standard": "^17.0.0",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.2.1",
"eslint-config-standard-with-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0"
},
"engines" : {
"node" : ">=16.0.0"
}
}