This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
67 lines (67 loc) · 2.87 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
60
61
62
63
64
65
66
67
{
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "jlpm && lerna bootstrap --hoist && jlpm run build:packages && jlpm run build:packages:post && jlpm run link:packages",
"build:packages": "tsc --build packages/*",
"build:packages:post": "lerna run postBuild",
"build:watch": "jlpm run build:packages --watch --listEmittedFiles",
"clean": "jlpm run clean:jupyter && jlpm clean:packages && jlpm clean:node",
"clean:jupyter": "jlpm run uninstall:extensions && jupyter lab clean",
"clean:node": "lerna clean --yes && rimraf node_modules yarn.lock",
"clean:packages": "lerna run clean",
"link:packages": "jupyter labextension link ./packages/* --no-build",
"lint": "jlpm run lint:css && jlpm run lint:typescript && jlpm run prettier:write",
"lint:check": "jlpm run lint:css:check && jlpm run lint:typescript:check && jlpm run prettier",
"lint:css": "jlpm run lint:css:check --fix",
"lint:css:check": "stylelint packages/**/*.css --config ./etc/stylelint/.stylelintrc.json",
"lint:typescript": "jlpm run lint:typescript:check --fix",
"lint:typescript:check": "eslint . --ext 'ts,tsx' --ignore-path .gitignore --config ./etc/eslint/.eslintrc.js",
"prettier": "prettier . --config ./etc/prettier/.prettierrc --ignore-path .gitignore --check",
"prettier:write": "jlpm run prettier --write",
"rebuild:packages": "jlpm run clean:packages && jlpm run build:packages",
"test": "jlpm run test:packages && jlpm run test:integration",
"test:packages": "lerna run test",
"test:integration": "env JEST_PUPPETEER_CONFIG=./etc/jest/jest-puppeteer.config.js jest --runInBand --config ./etc/jest/jest.config.js",
"test:integration:debug": "env HEADLESS=false SLOWMO=true jlpm test",
"uninstall:extensions": "jupyter labextension uninstall --all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --config ./etc/lint-staged/lint-staged.config.js"
}
},
"dependencies": {},
"devDependencies": {
"@rws-air/jestscreenshot": "^4.0.4",
"@types/expect-puppeteer": "^4.4.1",
"@types/jest": "^25.2.1",
"@types/jest-environment-puppeteer": "^4.3.1",
"@types/puppeteer": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.3",
"jest": "^25.2.7",
"jest-circus": "^25.2.7",
"jest-puppeteer": "^4.3.0",
"lerna": "^3.16.4",
"lint-staged": "^10.1.2",
"prettier": "^2.0.4",
"puppeteer": "^2.0.0",
"rimraf": "^3.0.2",
"stylelint": "^13.3.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0",
"ts-jest": "^25.3.1",
"typescript": "^3.5.3"
}
}