-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.05 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
68
{
"private": true,
"name": "workgrid-javascript",
"version": "0.0.0",
"scripts": {
"lint": "eslint --fix '**/*.{js,ts}' --ignore-path .gitignore",
"unit": "jest --coverage",
"test": "yarn lint && yarn type-check && yarn unit",
"build": "wsrun --stages --fast-exit --exclude-missing --collect-logs build",
"format": "prettier --write '**/*.{json,yml,md}' --ignore-path .gitignore",
"release": "wsrun --stages --fast-exit --collect-logs --bin node $PWD/scripts/release.js",
"pretest": "yarn build",
"precommit": "yarn version-check && lint-staged",
"type-check": "wsrun --exclude-missing type-check",
"prerelease": "yarn version-check",
"postinstall": "wsrun --exclude-missing postinstall",
"version-check": "node ./scripts/version-check.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Workgrid/workgrid-javascript"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@microsoft/api-documenter": "^7.13.34",
"@microsoft/api-extractor": "^7.18.4",
"@types/jest": "^26.0.21",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"chalk": "^4.1.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"execa": "^4.0.0",
"fs-extra": "^9.0.1",
"husky": "^4.2.1",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"lint-staged": "^10.0.7",
"lodash": "^4.17.15",
"prettier": "^2.3.2",
"rollup": "^2.56.0",
"ts-jest": "^26.5.4",
"typescript": "^4.3.5",
"wsrun": "^5.2.0"
},
"eslintConfig": {
"extends": [
"./eslint.config.js"
]
},
"license": "Apache-2.0",
"resolutions": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"@types/react": "^16.0.0",
"@types/react-dom": "^16.0.0",
"@types/react-test-renderer": "^16.0.0",
"debug": "^4.0.0",
"typescript": "^4.2.0"
}
}