forked from deathbeds/jupyterlab-starters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.13 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
{
"private": true,
"scripts": {
"bootstrap": "jlpm --ignore-optional --prefer-offline --frozen-lockfile && lerna bootstrap && jlpm lint && jlpm clean && jlpm build",
"build": "lerna run build:pre && lerna run build && lerna run build:ext",
"bundle": "lerna run --parallel bundle",
"clean": "lerna run --parallel clean",
"deduplicate": "jlpm yarn-deduplicate -s fewer --fail",
"eslint:check": "eslint --ext .js,.jsx,.ts,.tsx .",
"eslint:fix": "eslint --ext .js,.jsx,.ts,.tsx --fix .",
"lint": "jlpm --silent stylelint:fix && jlpm --silent prettier:fix && jlpm --silent eslint:fix",
"lint:check": "jlpm --silent prettier:check && jlpm --silent eslint:check && jlpm --silent stylelint:check",
"stylelint:check": "stylelint --cache \"{packages/*/style,docs/_static}/**/*.css\"",
"stylelint:fix": "jlpm stylelint:check --fix",
"test": "lerna run --stream --concurrency=1 test",
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md,.yml}\"",
"prettier:check": "jlpm prettier:base --check",
"prettier:fix": "jlpm prettier:base --list-different --write",
"watch": "lerna run --parallel watch"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"resolutions": {
"glob-parent": "^5.1.2"
},
"devDependencies": {
"@adobe/jsonschema2md": "^6.1.4",
"@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.28.0",
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"prettier-package-json": "^2.6.0",
"rimraf": "^3.0.2",
"stylelint": "^14.3.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-standard": "~24.0.0",
"stylelint-prettier": "^2.0.0",
"typescript": "~4.5.5",
"yarn-deduplicate": "^3.1.0"
},
"stylelint": {
"extends": [
"stylelint-config-recommended",
"stylelint-config-standard",
"stylelint-prettier/recommended"
],
"rules": {
"selector-class-pattern": null
}
}
}