-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 KB
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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "yarn install && lerna bootstrap",
"build": "lerna run build --scope=@36node/sketch && lerna run build",
"changelog": "lerna-changelog",
"clean": "lerna clean",
"format": "prettier --trailing-comma es5 --write 'packages/**/*.js'",
"lint": "eslint packages/*/src",
"publish:all": "lerna publish from-git --registry https://registry.npmjs.org",
"prerelease": "yarn test",
"release": "lerna version --conventional-commits --push -m 'chore(release): publish'",
"test": "CI=true lerna run test"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config-overrides-path": "node_modules/@36node/sketch/config-overrides",
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-push": "yarn lint && CI=true NODE_ENV=test yarn test"
}
},
"lint-staged": {
"*.js": [
"yarn format",
"git add"
]
},
"devDependencies": {
"@36node/eslint-config": "*",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/jest": "^24.0.11",
"@types/react": "^16.8.8",
"@types/react-redux": "^7.1.0",
"husky": "^1.3.1",
"lerna": "^3.13.1",
"lint-staged": "^8.1.5",
"prettier": "^1.18.2"
}
}