forked from fnplus/footsteps-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.23 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
{
"name": "footsteps-app",
"private": true,
"description": "Crowdsourced Learning Paths Aggregator",
"version": "0.1.1",
"license": "GPL v3",
"scripts": {
"robots": "cp src/components/SEO/robots.txt public/",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"repository": {
"type": "git",
"url": "https://github.com/fnplus/footsteps-app"
},
"keywords": [
"gatsby",
"react",
"graphql",
"hasura"
],
"author": "@fnplusofficial",
"bugs": {
"url": "https://github.com/fnplus/footsteps-app/issues"
},
"homepage": "https://github.com/fnplus/footsteps-app#readme",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"antd": "^3.26.6",
"apollo-boost": "^0.4.7",
"apollo-link-http": "^1.5.16",
"firebase": "^7.6.2",
"gatsby": "^2.18.21",
"gatsby-cli": "^2.8.26",
"gatsby-plugin-create-client-paths": "^2.1.21",
"gatsby-plugin-google-analytics": "^2.1.32",
"gatsby-plugin-manifest": "^2.2.37",
"gatsby-plugin-netlify": "^2.1.31",
"gatsby-plugin-offline": "^3.0.31",
"gatsby-plugin-react-helmet": "^3.1.21",
"gatsby-plugin-sitemap": "^2.2.25",
"gatsby-plugin-typography": "^2.3.21",
"gatsby-source-graphql": "^2.1.31",
"isomorphic-fetch": "^2.2.1",
"query-string": "^6.9.0",
"react": "^16.9.0",
"react-apollo": "^3.1.3",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^3.0.2",
"react-dom": "^16.9.0",
"react-firebase-file-uploader": "^2.4.3",
"react-firebaseui": "^4.0.0",
"react-helmet": "^5.2.1",
"react-tag-input": "^6.4.2",
"react-typography": "^0.16.19",
"typography": "^0.16.19",
"typography-theme-grand-view": "^0.16.19",
"uuid": "^3.3.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-gatsby-standard": "^2.2.0",
"husky": "^4.0.6",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
}
}