forked from kentcdodds/bookshelf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.86 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.86 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
{
"name": "bookshelf",
"version": "0.1.0",
"private": true,
"homepage": "https://the-react-bookshelf.netlify.com/",
"engines": {
"node": ">=8",
"npm": ">=6",
"yarn": ">=1"
},
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.11",
"@reach/dialog": "^0.2.8",
"@reach/menu-button": "^0.1.17",
"@reach/router": "^1.2.1",
"@reach/tabs": "^0.1.5",
"@reach/tooltip": "^0.2.0",
"@reach/visually-hidden": "^0.1.4",
"bootstrap": "^4.3.1",
"debounce-fn": "^3.0.1",
"faker": "^4.1.0",
"jest-dom": "^3.2.2",
"match-sorter": "^3.0.0",
"prop-types": "^15.7.2",
"querystringify": "^2.1.1",
"react": "^16.8.6",
"react-async": "^6.2.0",
"react-dom": "^16.8.6",
"react-icons": "^3.7.0",
"react-scripts": "^3.0.1",
"react-testing-library": "^7.0.0",
"stop-runaway-react-effects": "^1.1.1"
},
"devDependencies": {
"husky": "^2.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:coverage": "npm run test -- --watchAll false --coverage",
"lint": "eslint . --cache-location node_modules/.cache/eslint",
"format": "prettier --write \"**/*.+(js|json|css|md|mdx|html)\"",
"setup": "node ./scripts/setup && npm run validate",
"validate": "npm-run-all --parallel lint test:coverage build"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "npm run validate",
"pre-push": "node ./scripts/update-exercises"
}
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
}
}