-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 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
{
"name": "adopt-me",
"version": "1.0.0",
"description": "The Adopt Me pet adoption app",
"main": "src/index.js",
"scripts": {
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx}\"",
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\" --quiet",
"dev": "parcel src/index.html",
"typecheck": "tsc --noEmit"
},
"author": "Brian Holt <btholt+citrv6@gmail.com>",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "7.12.16",
"@babel/eslint-parser": "7.13.4",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/preset-env": "7.13.5",
"@babel/preset-react": "7.12.13",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "7.18.0",
"eslint-config-prettier": "8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"parcel": "1.12.3",
"prettier": "2.2.1",
"typescript": "^4.2.2"
},
"dependencies": {
"react": "17.0.1",
"react-dom": "17.0.1",
"react-router-dom": "5.2.0"
},
"browserslist": [
"last 2 Chrome versions"
]
}