forked from OriginProtocol/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.82 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
{
"name": "root",
"private": true,
"dependencies": {
"lerna": "3.20.2"
},
"workspaces": {
"packages": [
"dapps/**",
"infra/**",
"packages/**"
],
"nohoist": [
"**/openzeppelin-solidity"
]
},
"devDependencies": {
"babel-eslint": "10.1.0",
"chai": "4.2.0",
"eslint": "6.8.0",
"eslint-config-react-app": "5.2.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-flowtype": "4.6.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.18.3",
"eslint-plugin-standard": "4.0.1",
"husky": "4.2.1",
"mocha": "7.0.1",
"prettier": "1.19.1"
},
"scripts": {
"bootstrap": "lerna bootstrap --no-ci --progress",
"build": "lerna run build",
"clean": "git clean -fdX .",
"start": "lerna run start --scope @origin/marketplace --stream --no-prefix",
"lint": "lerna run lint && npm run lint --prefix mobile",
"format": "eslint **/**/*.js --quiet --fix",
"test": "node scripts/test.js",
"package-diffs": "find . -maxdepth 3 -name package.json -type f | grep -v mobile | grep -v node_modules | node scripts/package-versions.js"
},
"husky": {
"hooks": {
"pre-push": "lerna run lint && npm run lint --prefix mobile"
}
},
"renovate": {
"extends": [
"config:base"
],
"groupName": "all",
"ignoreDeps": [
"bip39",
"ganache-core",
"web3",
"web3-utils",
"openzeppelin-solidity",
"truffle",
"truffle-hdwallet-provider",
"truffle-privatekey-provider",
"react-image-crop",
"solc",
"file-type",
"secp256k1"
],
"ignorePaths": [
"mobile"
],
"schedule": "before 2am",
"rebaseStalePrs": false
}
}