forked from epicweb-dev/react-suspense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.41 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "react-suspense",
"title": "React Suspense 🔀",
"private": true,
"version": "1.0.0",
"description": "React Suspense Workshop",
"keywords": [],
"homepage": "https://react-suspense.netlify.app/",
"license": "GPL-3.0-only",
"main": "src/index.js",
"engines": {
"node": "14 || 16 || 18",
"npm": ">=8.16.0"
},
"dependencies": {
"@kentcdodds/react-workshop-app": "^4.3.0",
"@testing-library/react": "^12.1.2",
"chalk": "^4.1.2",
"codegen.macro": "^4.1.0",
"react": "0.0.0-experimental-4c8c98ab9",
"react-dom": "0.0.0-experimental-4c8c98ab9",
"react-error-boundary": "^3.1.4",
"react-icons": "^4.4.0"
},
"devDependencies": {
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"husky": "^4.3.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"react-scripts": "^4.0.3",
"serve": "^13.0.2"
},
"scripts": {
"serve": "serve -s build",
"start": "cross-env NODE_OPTIONS=--openssl-legacy-provider react-scripts start",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider react-scripts build",
"build:profile": "cross-env NODE_OPTIONS=--openssl-legacy-provider react-scripts build --profile",
"test": "react-scripts test --env=jsdom",
"test:coverage": "npm run test -- --watchAll=false",
"test:exercises": "npm run test -- testing.*exercises\\/ --onlyChanged",
"setup": "node setup",
"lint": "eslint .",
"format": "prettier --write \"./src\"",
"validate": "npm-run-all --parallel build test:coverage lint"
},
"husky": {
"hooks": {
"pre-commit": "node ./scripts/pre-commit",
"pre-push": "node ./scripts/pre-push"
}
},
"jest": {
"collectCoverageFrom": [
"src/final/**/*.js"
]
},
"eslintConfig": {
"extends": "react-app"
},
"babel": {
"presets": [
"babel-preset-react-app"
]
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/kentcdodds/react-suspense.git"
},
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com/)",
"bugs": {
"url": "https://github.com/kentcdodds/react-suspense/issues"
},
"msw": {
"workerDirectory": "public"
}
}