-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
89 lines (89 loc) Β· 2.5 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
{
"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\"",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"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"
]
},
"dependencies": {
"@ant-design/icons": "^4.2.2",
"antd": "^4.5.4",
"apollo-boost": "^0.4.9",
"apollo-link-http": "^1.5.17",
"firebase": "^7.18.0",
"gatsby": "^2.24.47",
"gatsby-cli": "^2.12.87",
"gatsby-image": "^2.4.16",
"gatsby-plugin-create-client-paths": "^2.3.10",
"gatsby-plugin-google-analytics": "^2.3.13",
"gatsby-plugin-manifest": "^2.4.23",
"gatsby-plugin-netlify": "^2.3.13",
"gatsby-plugin-offline": "^3.2.23",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sharp": "^2.6.27",
"gatsby-plugin-sitemap": "^2.4.11",
"gatsby-plugin-typography": "^2.5.10",
"gatsby-source-filesystem": "^2.3.24",
"gatsby-source-graphql": "^2.7.1",
"gatsby-transformer-sharp": "^2.5.13",
"isomorphic-fetch": "^2.2.1",
"query-string": "^6.13.1",
"react": "^16.13.1",
"react-apollo": "^3.1.5",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^3.0.2",
"react-dom": "^16.13.1",
"react-firebase-file-uploader": "^2.4.3",
"react-firebaseui": "^4.1.0",
"react-helmet": "^6.1.0",
"react-tag-input": "^6.4.3",
"react-typography": "^0.16.19",
"snyk": "^1.377.0",
"typography": "^0.16.19",
"typography-theme-grand-view": "^0.16.19",
"uuid": "^8.3.0"
},
"devDependencies": {
"eslint": "^7.7.0",
"eslint-config-gatsby-standard": "^2.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
}
}