forked from interbit/interbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.35 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": "interbit-platform",
"private": true,
"dependencies": {
"cross-env": "^5.1.4",
"lerna": "^2.10.2",
"tar": "^4.4.2"
},
"scripts": {
"build": "cross-env-shell lerna run --scope $APP_NAME build",
"build:modules": "lerna run --scope interbit-* build",
"postinstall": "lerna bootstrap --hoist --parallel && npm run build:modules",
"heroku-postbuild": "npm run build",
"start": "cross-env-shell lerna run --scope $APP_NAME serve --stream",
"test": "npm run lint && lerna run --parallel test -- -- --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "npm run build:modules && lerna publish --force-publish=* --exact --conventional-commits"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"eslint": "^4.7.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-config-prettier-standard": "^1.0.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"prettier": "^1.6.1"
},
"engines": {
"npm": "5.6.0",
"node": "9.3.0"
}
}