-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.72 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.72 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "instrument-catalog-frontend",
"description": "Simple wiki-ish React app for sharing musical instrument descriptions",
"author": "Noah Brenner",
"version": "0.1.0",
"license": "MIT",
"private": true,
"scripts": {
"test": "jest --verbose",
"lint:lint": "eslint --ignore-path .gitignore .",
"lint:types": "tsc --noEmit",
"lint:format": "prettier --check --ignore-path .gitignore .",
"lint": "npm run lint:lint && npm run lint:types && npm run lint:format",
"format": "prettier --write --ignore-path .gitignore .",
"start": "react-static start",
"stage": "react-static build --staging",
"build": "react-static build",
"serve": "serve dist"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"homepage": "https://github.com/noahbrenner/instrument-catalog-frontend#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/noahbrenner/instrument-catalog-frontend.git"
},
"dependencies": {
"@auth0/auth0-react": "^1.2.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@reach/router": "^1.2.1",
"axios": "^0.21.1",
"axios-retry": "^3.1.9",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-hot-loader": "^4.12.21",
"react-static": "^7.2.0",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.2",
"@testing-library/user-event": "^12.1.4",
"@types/jest": "^26.0.13",
"@types/jws": "^3.2.3",
"@types/node": "^14.6.4",
"@types/reach__router": "^1.2",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.8.5",
"@types/styled-components": "^5.1.3",
"@types/webpack-env": "^1.14.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest-dom": "^3.2.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-testing-library": "^3.8.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jws": "^4.0.0",
"msw": "^0.20.5",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.0",
"react-static-plugin-reach-router": "^7.2.0",
"react-static-plugin-sitemap": "^7.2.0",
"react-static-plugin-source-filesystem": "^7.2.0",
"react-static-plugin-styled-components": "^7.3.0",
"react-static-plugin-typescript": "^7.2.0",
"serve": "^11.1.0",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}