-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
125 lines (125 loc) · 4.26 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "bookshelf",
"version": "1.0.0",
"private": true,
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com/)",
"license": "GPL-3.0-only",
"homepage": "https://bookshelf.lol/",
"engines": {
"node": ">=16",
"npm": ">=8.16.0"
},
"dependencies": {
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"@reach/dialog": "^0.17.0",
"@reach/menu-button": "^0.17.0",
"@reach/tabs": "^0.17.0",
"@reach/tooltip": "^0.17.0",
"@reach/visually-hidden": "^0.17.0",
"bootstrap": "^5.1.3",
"codegen.macro": "^4.1.0",
"debounce-fn": "^4.0.0",
"faker": "^5.5.3",
"history": "^5.3.0",
"match-sorter": "^6.3.1",
"msw": "^0.42.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-icons": "^4.4.0",
"react-query": "2.1.1",
"react-query-devtools": "2.3.3",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"stop-runaway-react-effects": "^2.0.0"
},
"devDependencies": {
"@babel/preset-react": "^7.17.12",
"@testing-library/cypress": "^8.0.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"cross-env": "^7.0.3",
"cypress": "^10.1.0",
"cypress-hmr-restarter": "^2.0.3",
"eslint-plugin-cypress": "^2.12.1",
"husky": "4.3.8",
"inquirer": "^9.0.0",
"is-ci": "^3.0.1",
"is-ci-cli": "^2.2.0",
"jest": "^27.4.3",
"jest-watch-typeahead": "^0.6.4",
"node-match-path": "^0.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"react-test-renderer": "^18.2.0",
"resolve": "^1.22.1",
"serve": "^13.0.2",
"start-server-and-test": "^1.14.0",
"whatwg-fetch": "^3.6.2"
},
"scripts": {
"start": "react-scripts start",
"start:cli": "cross-env BROWSER=none react-scripts start",
"build": "react-scripts build --profile",
"test": "is-ci-cli \"test:coverage\" \"test:watch\"",
"test:watch": "jest --watch",
"test:coverage": "jest --watch=false --coverage",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --watch --runInBand",
"cy:install": "cypress install",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test:e2e": "start-server-and-test start:cli http://localhost:3000/list cy:open",
"test:e2e:run": "start-server-and-test serve http://localhost:8811/list cy:run",
"serve": "serve --no-clipboard --single --listen 8811 build",
"lint": "eslint . --cache-location node_modules/.cache/eslint",
"format": "prettier --write \"**/*.+(js|json|css|md|mdx|html)\"",
"setup": "node setup",
"validate-exercises": "node ./scripts/validate-exercises",
"validate": "npm run validate-exercises && npm-run-all --parallel lint test:coverage build"
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-push": "node ./scripts/pre-push"
}
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
},
"description": "<div> <h1 align=\"center\"><a href=\"https://epicreact.dev\">Build an Epic React App 🚀 EpicReact.Dev</a></h1> <strong> Building a full React application </strong> <p> The React and JavaScript ecosystem is full of tools and libraries to help you build your applications. In this (huge) workshop we’ll build an application from scratch using widely supported and proven tools and techniques. We’ll cover everything about building frontend React applications, from the absolute basics to the tricky parts you'll run into building real world React apps and how to create great abstractions. </p>",
"main": "go.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kentcdodds/bookshelf.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/kentcdodds/bookshelf/issues"
},
"msw": {
"workerDirectory": "public"
}
}