-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
92 lines (92 loc) · 2.43 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "reactconftv",
"private": true,
"description": "ReactConf.TV",
"version": "0.1.0",
"author": "Richie <[email protected]>",
"dependencies": {
"babel-plugin-styled-components": "^1.11.1",
"fuse.js": "^6.4.6",
"gatsby": "^2.24.63",
"gatsby-image": "^2.4.19",
"gatsby-plugin-google-gtag": "^2.6.0",
"gatsby-plugin-less": "^3.2.3",
"gatsby-plugin-manifest": "^2.4.30",
"gatsby-plugin-react-helmet": "^3.3.11",
"gatsby-plugin-sharp": "^2.6.36",
"gatsby-plugin-styled-components": "^3.3.11",
"gatsby-source-filesystem": "^2.3.30",
"gatsby-transformer-sharp": "^2.5.15",
"idb-keyval": "^3.2.0",
"prop-types": "^15.7.2",
"query-string": "^6.13.5",
"ramda": "^0.27.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.2.0",
"react-player": "^2.6.2",
"reconnect.js": "^1.0.0",
"standard-changelog": "^2.0.27",
"styled-components": "^5.2.0",
"styled-icons": "^10.22.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^0.9.1",
"chalk": "^4.1.0",
"commander": "^7.0.0",
"eslint": "^7.12.1",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"execa": "^5.0.0",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"node-fetch": "^2.6.1",
"prettier": "^2.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"react",
"gatsby"
],
"license": "0BSD",
"scripts": {
"fetch": "node ./scripts/cli fetch",
"snapshot": "node ./scripts/cli snapshot",
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest",
"changelog": "standard-changelog --first-release"
},
"repository": {
"type": "git",
"url": "https://github.com/whitedogg13/react-tv"
},
"bugs": {
"url": "https://github.com/whitedogg13/react-tv/issues"
}
}