forked from overture-stack/arranger
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.33 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
{
"repository": {
"type": "git",
"url": "https://github.com/kids-first/arranger.git"
},
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"watch": "npm run bootstrap && npm run lerna -- run --parallel watch",
"bootstrap": "lerna bootstrap --hoist",
"lerna": "lerna",
"link": "npm-link-shared modules",
"publish": "lerna publish --force-publish",
"test": "lerna run test --stream",
"server": "cd modules/server && npm run watch",
"storybook": "cd modules/components && npm run storybook",
"dashboard": "cd modules/components && npm run dashboard",
"portal": "cd modules/components && npm run portal",
"netlify-build": "npm i && npm run bootstrap -- --scope=@kfarranger/components --include-filtered-dependencies && cd modules/components && npm run build-storybook"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"eslint": "^4.1.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.42.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.6.1",
"lerna": "^2.6.0",
"npm-link-shared": "^0.5.3",
"prettier": "^1.19.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {}
}