forked from celo-org/celo-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.41 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
69
70
71
72
73
74
75
{
"name": "celo",
"version": "1.0.0",
"author": "Celo",
"license": "SEE LICENSE IN SUB-PACKAGES",
"private": true,
"scripts": {
"install-pkg": "yarn install --link-duplicates",
"lint": "yarn lerna run lint",
"prettify": "yarn run prettier --config .prettierrc.js --write '**/*.+(ts|tsx|js|jsx)'",
"prettify:diff": "yarn run prettier --config .prettierrc.js --list-different '**/*.+(ts|tsx|js|jsx)'",
"reset": "yarn reset-modules && yarn reset-cache",
"reset-cache": "yarn reset-yarn && yarn reset-rn",
"reset-modules": "rm -rf node_modules/ packages/*/node_modules",
"reset-rn": "watchman watch-del-all; rm -rf $TMPDIR/metro-cache-*; rm -rf $TMPDIR/haste-map-*; rm -rf $TMPDIR/metro-symbolicate*",
"reset-yarn": "yarn cache clean",
"test": "yarn run lerna run test",
"build": "yarn run lerna run build",
"report-coverage": "yarn run lerna run test-coverage",
"test:watch": "node node_modules/jest/bin/jest.js --watch",
"postinstall": "yarn run lerna run postinstall && patch-package && yarn keys:decrypt",
"preinstall": "bash scripts/create_key_templates.sh",
"keys:decrypt": "bash scripts/key_placer.sh decrypt",
"keys:encrypt": "bash scripts/key_placer.sh encrypt"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "node ./scripts/hooks/pre-push.js"
}
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"@celo/verifier/react-native",
"@celo/mobile/react-native",
"@celo/react-components/react-native",
"@celo/web/@timkendrick/monaco-editor",
"@celo/web/@types/react-i18next",
"@celo/web/next-i18next",
"**/openzeppelin-solidity"
]
},
"devDependencies": {
"@types/jest": "^24.0.17",
"husky": "^3.0.0",
"lerna": "^3.16.0",
"patch-package": "^5.1.1",
"prettier": "1.13.5",
"pretty-quick": "^1.11.1",
"solc": "0.5.8",
"tslint": "^5.20.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript-tslint-plugin": "^0.5.4",
"tsconfig-paths": "^3.8.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"dependencies": {
"codecov": "^3.1.0"
},
"resolutions": {
"node-gyp": "5.0.1",
"tar": "4.4.10",
"lodash": "4.17.15",
"react-native-ntp-client": "^1.0.0",
"**/codecov/**/js-yaml": "^3.13.1",
"**/deep-extend": "^0.5.1",
"**/extend": "^3.0.2",
"sha3": "1.2.3"
}
}