forked from AAFC-BICoE/dina-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
{
"name": "dina-ui-monorepo",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"docs": "asciidoctor -a copycss -a toc=left --safe-mode unsafe --destination-dir ./generated-docs ./docs/index.adoc",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --project tsconfig.json --fix",
"test": "tsc && jest",
"test:coverage": "tsc && jest --coverage",
"prepare": "husky install"
},
"devDependencies": {
"@phenomnomnominal/tsquery": "^4.1.1",
"@types/enzyme": "^3.10.8",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.9",
"@types/react-test-renderer": "^17.0.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"asciidoctor": "^2.2.5",
"enzyme": "^3.11.0",
"husky": "^7.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"jsonapi-typescript": "^0.1.3",
"lint-staged": "^12.1.2",
"npm-run-all": "^4.1.5",
"pa11y-ci": "^2.4.1",
"prettier": "^2.4.1",
"react-test-renderer": "^17.0.2",
"ts-node": "^10.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"tslint-react": "^5.0.0",
"typescript": "^4.5.5",
"xlsx": "^0.17.4"
},
"resolutions": {
"**/kitsu/axios": "^0.21.1",
"**/lodash": "^4.17.21",
"**/react-file-viewer/**/three": "^0.125.0",
"**/react-file-viewer/**/underscore": "^1.13.1",
"**/react-file-viewer/**/lodash": "^4.17.21",
"**/minimist": "^1.2.6",
"**/async": "^2.6.4",
"**/moment": "^2.29.4",
"**/node-fetch": "^2.6.7",
"**/minimatch": "^3.0.5",
"**/loader-utils": "^1.4.2",
"**/json5": "^2.2.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --project tsconfig.json --fix",
"git add"
],
"*.{js,jsx,css,json,md}": [
"prettier --write",
"git add"
]
}
}