-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
{
"name": "adopt-me",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "parcel build src/index.html",
"clear-build-cache": "rm -rf .cache/ dist/",
"dev": "parcel src/index.html",
"dev:mock": "cross-env PET_MOCK=mock parcel src/index.html",
"format": "prettier \"src/**/*.{js,html}\" --write",
"lint": "tslint --project ",
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@types/reach__router": "^1.3.5",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"cross-env": "^7.0.2",
"jest": "^26.4.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"react-testing-library": "^8.0.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^5.0.0",
"typescript": "^3.9.7"
},
"dependencies": {
"@emotion/babel-preset-css-prop": "^10.0.27",
"@emotion/core": "^10.0.34",
"@frontendmasters/pet": "^1.0.3",
"@reach/router": "^1.3.4",
"@types/react-redux": "^7.1.9",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"redux": "^4.0.5"
},
"browserslist": [
"last 2 Chrome versions"
]
}