-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
51 lines (51 loc) · 1.45 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
{
"repository": {
"type": "git",
"url": "git+https://github.com/mamba-org/gator.git"
},
"author": "Jupyter Development Team",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/mamba-org/gator/issues"
},
"homepage": "https://github.com/mamba-org/gator",
"scripts": {
"build": "lerna run build",
"build:dev": "lerna run build:dev",
"build:prod": "lerna bootstrap && lerna run build:prod",
"clean": "lerna run clean",
"eslint": "eslint . --fix --ext .ts,.tsx",
"eslint:check": "eslint . --ext .ts,.tsx",
"install": "lerna bootstrap",
"prettier": "npx prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "npx prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"publish": "yarn run clean && yarn run build && lerna publish",
"test": "lerna run test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.18.3",
"husky": "^0.14.0",
"lerna": "^3.22.1",
"lint-staged": "^9.4.3",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"typescript": "~4.1.3",
"watch": "~1.0.2"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"private": true
}