-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.2 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.2 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
{
"name": "sports-poll-front-end-gatsby",
"private": true,
"description": "Dead simple poll system around some sports events which can be fetched from a JSON file, developed with Gatsby",
"version": "1.0.0",
"author": "Baptiste Clarey Sjöstrand",
"dependencies": {
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.7",
"dotenv": "^8.2.0",
"gatsby": "^2.17.11",
"gatsby-image": "^2.2.31",
"gatsby-plugin-emotion": "^4.1.15",
"gatsby-plugin-manifest": "^2.2.27",
"gatsby-plugin-offline": "^3.0.22",
"gatsby-plugin-react-helmet": "^3.1.14",
"gatsby-plugin-sharp": "^2.2.37",
"gatsby-source-filesystem": "^2.1.36",
"gatsby-transformer-sharp": "^2.3.3",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-helmet": "^5.2.1"
},
"devDependencies": {
"@testing-library/react": "^9.3.2",
"@types/jest": "^24.0.23",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-helmet": "^5.0.14",
"@types/react-test-renderer": "^16.9.1",
"babel-jest": "^24.9.0",
"babel-preset-gatsby": "^0.2.22",
"gatsby-plugin-typescript": "^2.1.18",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"react-test-renderer": "^16.12.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.1.0",
"typescript": "^3.7.2"
},
"keywords": [
"gatsby",
"react",
"graphql",
"frontend",
"sports",
"poll",
"glomo"
],
"license": "GPL-3.0-only",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "jest --verbose",
"test:watch": "jest --verbose --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/baptistecs/sports-poll-front-end-gatsby"
},
"bugs": {
"url": "https://github.com/baptistecs/sports-poll-front-end-gatsby/issues"
}
}