This repository has been archived by the owner on Apr 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.87 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
{
"name": "smarterlabs",
"author": "Kennedy Rose <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"bootstrap": "npx lerna bootstrap --use-workspaces",
"build": "npx lerna run build --stream",
"build:app-boilerplate": "npx lerna run build --stream --scope @app-boilerplate/*",
"circle": "npx open-cli https://circleci.com/gh/smarterlabs/workflows/labs",
"clean": "rm -rf public && npx lerna run clean --stream --no-sort --concurrency 999",
"deploy": "npx lerna run deploy --stream --no-sort --concurrency 999",
"deploy:app-boilerplate": "npx lerna run deploy:production --stream --no-sort --concurrency 999 --scope @app-boilerplate/*",
"dev": "yarn run dev:all",
"dev:all": "npx lerna run dev --stream --no-sort --concurrency 999",
"develop": "yarn run dev",
"github": "npx open-cli https://github.com/smarterlabs/labs",
"issue": "npx open-cli https://github.com/smarterlabs/labs/issues/new",
"lint": "npx eslint ./",
"lint:fix": "npx eslint ./ --fix",
"netlify": "npx open-cli https://app.netlify.com/sites/labs-boilerplate/deploys",
"open": "npx lerna run open",
"patch": "npx lerna run patch",
"publish": "npx lerna publish from-package -y",
"serve": "npx lerna run serve",
"start": "yarn run dev",
"test": "jest",
"version": "npx lerna version --no-push"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"git add"
]
},
"workspaces": [
"packages/*",
"packages/@app-boilerplate/*",
"packages/@smarterlabs/*",
"packages/@utils/*"
],
"devDependencies": {
"@testing-library/jest-dom": "^4.1.0",
"@testing-library/react": "^9.1.4",
"child-process-promise": "^2.2.1",
"eslint": "^6.1.0",
"husky": "^3.0.3",
"jest": "^24.9.0",
"lerna": "^3.16.4",
"lint-staged": "^9.2.1",
"open-cli": "^5.0.0",
"yarn": "^1.17.3"
},
"dependencies": {}
}