-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
68 lines (68 loc) · 2.1 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "react-celo-root",
"private": true,
"workspaces": [
"packages/example",
"packages/react-celo",
"packages/walletconnect"
],
"pkgs": {
"path": "./packages"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"dev": "lerna run dev --stream --parallel",
"build": "lerna link && lerna run clean && lerna run build --scope 'example' --include-dependencies",
"postinstall": "lerna bootstrap",
"lint": "lerna run lint",
"lint-fix": "lerna run lint -- --fix",
"test": "lerna link && COVERAGE=ON lerna run --stream --no-bail test",
"prepare": "husky install",
"reset-modules": "rm -rf node_modules/ packages/*/node_modules",
"publish-packages-script": "ts-node ./scripts/publish-packages.ts",
"deprecate-version": "ts-node ./scripts/deprecate-version.ts",
"publish-packages": "pkgs publish",
"bump-versions": "pkgs bump-versions"
},
"devDependencies": {
"@clabs/packages-publisher": "0.0.1-alpha.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/jest": "^29.5.1",
"@types/node": "^16.3.0",
"@types/prompt": "^1.1.2",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"colors": "^1.4.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eth-testing": "^1.0.0",
"husky": "^7.0.4",
"jest": "^29.5.0",
"jest-resolver-enhanced": "^1.1.0",
"lerna": "^6.6.1",
"lint-staged": "^12.2.2",
"prettier": "^2.5.1",
"prompt": "^1.2.1",
"semver": "^7.3.5",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsc-watch": "^4.6.0",
"typescript": "^4.7.4"
},
"resolutions": {
"query-string/**/decode-uri-component": "^0.2.1"
},
"lint-staged": {
"*.{js,css,md,ts,tsx,json,yaml,yml}": "prettier --write"
}
}