-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.32 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
{
"name": "norman",
"private": true,
"author": "https://smarterlabs.com",
"version": "0.0.0",
"scripts": {
"build": "cd packages/sandbox && yarn build",
"clean": "npx lerna run clean --stream --no-sort --concurrency 999",
"dev": "cd packages/sandbox && yarn dev",
"lint": "npx eslint ./",
"lint:fix": "npx eslint ./ --fix",
"open:actions": "open-cli https://github.com/smarterlabs/norman/actions",
"open:cd": "yarn open:actions",
"open:ci": "yarn open:actions",
"open:cms": "yarn open:sanity",
"open:issues": "open-cli https://github.com/smarterlabs/norman/issues",
"open:netlify": "open-cli https://app.netlify.com/sites/norman/deploys",
"open:secrets": "open-cli https://github.com/smarterlabs/norman/settings/secrets",
"publish": "lerna publish from-package --yes",
"stop": "sudo killall -9 node",
"test": "yarn run build && cd packages/sandbox && yarn run test",
"version": "lerna version"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"eslint --fix"
]
},
"devDependencies": {
"@smarterlabs/eslint-config": "^1.0.9",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"lerna": "^3.20.2",
"lint-staged": "^10.2.2",
"open-cli": "^6.0.1"
}
}