forked from atfd/polling-app-example
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.89 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
{
"name": "fast-poll",
"description": "Create polls on the fly",
"version": "1.0.0",
"author": "John Korzhuk <[email protected]>",
"dependencies": {
"firebase": "^4.11.0",
"gatsby": "^1.9.158",
"gatsby-link": "^1.6.34",
"gatsby-plugin-create-client-paths": "^1.0.8",
"gatsby-plugin-manifest": "^1.0.19",
"gatsby-plugin-offline": "^1.0.15",
"gatsby-plugin-react-helmet": "^2.0.3",
"gatsby-plugin-styled-components": "^2.0.6",
"react-helmet": "^5.2.0",
"react-infinite-scroll-component": "^4.0.3",
"react-redux": "^5.0.7",
"react-sortable-hoc": "^0.6.8",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"short-id": "^0.1.0-1",
"styled-components": "^3.1.6"
},
"keywords": [
"gatsby",
"pwa",
"firebase",
"firestore",
"react",
"redux",
"styled-components",
"netlify",
"JAMStack"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"lint": "eslint **/*.{js,jsx} --quiet",
"test": "jest",
"test:w": "jest --watch",
"deploy": "npm run build && netlify deploy",
"precommit": "pretty-quick --staged"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-jest": "^22.4.3",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.6.1",
"firebase-mock": "^2.2.2",
"husky": "^0.14.3",
"jest": "^22.4.3",
"jest-styled-components": "^5.0.1",
"prettier": "^1.10.2",
"pretty-quick": "^1.4.1",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.1"
}
}