-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.09 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.09 KB
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
69
70
71
72
73
74
75
76
{
"name": "web-lib-demand",
"version": "4.3.0",
"description": "",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=16"
},
"main": "index.js",
"scripts": {
"build": "lerna run build --stream",
"test": "lerna run test --stream",
"lint": "eslint . --ext js,jsx,ts,tsx",
"prepare": "husky install",
"prettier-format": "prettier --config .prettierrc.js '**/*.ts' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karhoo/web-lib-demand.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/karhoo/web-lib-demand/issues"
},
"homepage": "https://github.com/karhoo/web-lib-demand#readme",
"devDependencies": {
"@microsoft/api-extractor": "^7.19.2",
"@types/braintree-web": "^3.75.0",
"@types/date-and-time": "^0.13.0",
"@types/enzyme": "^3.10.10",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.182",
"@types/react": "^16.14.32",
"@types/rx": "^4.1.2",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"babel-eslint": "^10.0.3",
"braintree-web": "3.90.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.0",
"jest": "^27.4.5",
"jest-fetch-mock": "^3.0.3",
"jest-mock": "^27.4.2",
"lerna": "^4.0.0",
"lint-staged": "^12.1.3",
"prettier": "^2.5.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rxjs-marbles": "^6.0.1",
"ts-jest": "^27.1.2",
"tsdx": "^0.14.1",
"typescript": "^4.5.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}