-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.28 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
{
"name": "adopt-me",
"version": "1.0.0",
"description": "The Adopt Me pet adoption app",
"default": "src/index.js",
"scripts": {
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --quiet",
"dev": "parcel src/index.html",
"build": "parcel build src/index.html"
},
"author": "Brian Holt <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "7.12.16",
"@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"
]
}