-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.39 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
{
"description": "Created for creating!",
"main": "index.js",
"repository": "git@github.com:nampdn/bara.git",
"author": "nampdn <nampdn@protonmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"compile": "lerna run compile",
"test": "lerna run test",
"lint": "yarn workspaces run lint",
"format": "lerna run format",
"test:watch": "lerna run test:watch --stream",
"release": "yarn compile && lerna publish --yes --conventional-commits",
"release:canary": "lerna publish --yes --conventional-commits --canary --registry https://npm.pkg.github.com/",
"cli": "yarn workspace bara-cli",
"release:docs": "cd website && npx now",
"build": "yarn release:docs"
},
"workspaces": [
"packages/*"
],
"workspace-sources": {
"*": [
"packages/*/src"
]
},
"devDependencies": {
"@commitlint/cli": "8.2.0",
"@commitlint/config-conventional": "8.2.0",
"husky": "3.0.9",
"jest": "23.6.0",
"jest-cli": "23.6.0",
"lerna": "^3.17.0",
"lint-staged": "9.4.2",
"prettier": "1.18.2",
"ts-node": "8.4.1",
"tslint": "5.20.0",
"tslint-config-prettier": "1.18.0",
"tslint-react": "4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn format && lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"prettier --write",
"git add"
]
},
"name": "bara"
}