forked from OriginProtocol/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.43 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
{
"name": "root",
"private": true,
"dependencies": {
"lerna": "^3.5.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"eslint": "^5.9.0",
"eslint-config-react-app": "^3.0.5",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"mocha": "^5.2.0",
"prettier": "^1.16.3"
},
"scripts": {
"bootstrap": "lerna bootstrap --no-ci --progress --hoist \"**\" --ignore origin-mobile",
"bootstrap:mobile": "lerna bootstrap --progress --scope origin-linking --scope origin-mobile --scope origin --scope origin-contracts --scope origin-dapp --scope origin-messaging --scope origin-discovery --scope origin-notifications",
"build": "lerna run build",
"clean": "git clean -fdX .",
"start": "lerna run start --stream --parallel --scope origin --scope origin-dapp",
"lint": "lerna run lint",
"format": "eslint **/**/*.js --quiet --fix",
"postinstall": "npm run bootstrap && node scripts/symlink-packages.js",
"install:mobile": "npm install --ignore-scripts && npm run bootstrap:mobile",
"test": "node scripts/test.js"
},
"husky": {
"hooks": {
"pre-push": "lerna run lint"
}
}
}