-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.89 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
{
"name": "react-lazy-with-preload",
"version": "2.2.1",
"description": "Wraps the React.lazy API with preload functionality",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"author": "Ian Schmitz <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ianschmitz/react-lazy-with-preload.git"
},
"bugs": {
"url": "https://github.com/ianschmitz/react-lazy-with-preload/issues"
},
"homepage": "https://github.com/ianschmitz/react-lazy-with-preload#readme",
"keywords": [
"React",
"Lazy",
"Preload"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint -f codeframe --ext .js,.ts,.tsx src/",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.7",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"babel-jest": "^28.1.3",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-watch-typeahead": "^2.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "~4.7.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}