-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "go-visit",
"private": true,
"description": "Go Visit - Wild Fest Hackathon 2019",
"version": "0.1.0",
"author": "Paul Cailly <paul.cailly@gmail.com>",
"dependencies": {
"@emotion/core": "^10.0.14",
"@emotion/styled": "^10.0.14",
"@fortawesome/fontawesome-svg-core": "^1.2.21",
"@fortawesome/free-brands-svg-icons": "^5.10.1",
"@fortawesome/free-solid-svg-icons": "^5.10.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"emotion-normalize": "^10.1.0",
"emotion-theming": "^10.0.14",
"gatsby": "^2.13.39",
"gatsby-image": "^2.2.14",
"gatsby-plugin-emotion": "^4.1.2",
"gatsby-plugin-manifest": "^2.2.4",
"gatsby-plugin-offline": "^2.2.4",
"gatsby-plugin-styled-components": "^3.1.2",
"gatsby-plugin-typescript": "^2.1.2",
"gatsby-source-filesystem": "^2.1.6",
"google-map-react": "^1.1.5",
"husky": "^3.0.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-geolocated": "^3.0.1",
"react-helmet": "^5.2.1",
"react-tiny-popover": "^3.4.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^8.0.7",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"@types/react-helmet": "^5.0.8",
"@types/react-test-renderer": "^16.8.2",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"babel-jest": "^24.8.0",
"babel-plugin-macros": "^2.6.1",
"babel-preset-gatsby": "^0.2.8",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"npm": "^6.10.2",
"prettier": "^1.18.2",
"react-router-dom": "^5.0.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest --watchAll --collectCoverage"
},
"husky": {
"hooks": {
"pre-commit": "jest",
"pre-push": "jest"
}
}
}