-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.88 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.88 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
{
"name": "experimental-react-suspender",
"version": "1.0.4",
"description": "An experimental alternative approach to React Concurrent Mode Experimental Suspense component",
"main": "dist/suspender.js",
"scripts": {
"test": "jest --watch",
"hot": "NODE_ENV=development parcel ./src/index.html --no-autoinstall",
"prepare": "tsc -p tsconfig.npm.json && echo 'Finished building NPM package'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheCaffinatedDeveloper/experimental-react-suspender.git"
},
"author": "William D. Wells",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheCaffinatedDeveloper/experimental-react-suspender/issues"
},
"homepage": "https://github.com/TheCaffinatedDeveloper/experimental-react-suspender#readme",
"keywords": [
"promise",
"async",
"react",
"suspense",
"concurrent mode"
],
"peerDependencies": {
"react": "^16.8.0"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@testing-library/jest-dom": "^5.11.1",
"@testing-library/react": "^10.4.7",
"@types/jest": "^26.0.5",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"axios": "^0.19.2",
"babel-jest": "^26.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"jest": "^26.1.0",
"parcel-bundler": "^1.12.4",
"ts-jest": "^26.1.3",
"typescript": "^3.9.6"
}
}