-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
106 lines (106 loc) · 2.81 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "ossn-frontend",
"description": "OSSN Website",
"version": "1.0.0",
"dependencies": {
"acorn": "^6.1.1",
"apollo-boost": "^0.3.1",
"apollo-link-context": "^1.0.17",
"apollo-link-error": "^1.1.10",
"breakpoint-sass": "^2.7.1",
"chroma-sass": "^1.2.6",
"es6-promise": "^4.2.6",
"eslint-plugin-react-hooks": "^1.5.1",
"gatsby": "^2.1.35",
"gatsby-image": "^2.0.34",
"gatsby-plugin-create-client-paths": "^2.0.5",
"gatsby-plugin-google-analytics": "^2.0.17",
"gatsby-plugin-manifest": "^2.0.24",
"gatsby-plugin-offline": "^2.0.25",
"gatsby-plugin-react-helmet": "^3.0.9",
"gatsby-plugin-sass": "^2.0.11",
"gatsby-plugin-sharp": "^2.0.29",
"gatsby-source-filesystem": "^2.0.27",
"gatsby-source-graphql": "^2.0.15",
"gatsby-transformer-json": "^2.1.11",
"gatsby-transformer-sharp": "^2.1.17",
"graphql-tag": "^2.10.1",
"immer": "^2.1.3",
"isomorphic-fetch": "^2.2.1",
"leaflet": "^1.4.0",
"lodash": "^4.17.11",
"node-fetch": "^2.3.0",
"node-sass": "^4.11.0",
"path": "^0.12.7",
"query-string": "^6.4.0",
"react": "^16.8.4",
"react-apollo": "^2.5.2",
"react-dom": "^16.8.4",
"react-feather": "^1.1.6",
"react-helmet": "^5.2.0",
"react-leaflet": "^2.2.1",
"react-markdown": "^4.0.6",
"react-redux": "^6.0.1",
"react-responsive": "^6.1.1",
"redux-thunk": "^2.3.0",
"support-for": "^1.0.7",
"typey": "^1.1.2"
},
"keywords": [
"gatsby",
"ossn"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "eslint --fix ./src/**/**/*.js",
"serve": "gatsby serve",
"test": "npm run build && bundlesize",
"lh": "lighthousebot"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"bundlesize": "^0.17.1",
"eslint": "^5.15.2",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"gatsby-plugin-eslint": "^2.0.4",
"gatsby-plugin-extract-schema": "0.0.5",
"husky": "^1.3.1",
"lighthousebot": "git+https://github.com/GoogleChromeLabs/lighthousebot.git",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
},
"repository": {
"type": "git",
"url": "https://github.com/ossn/ossn-frontend"
},
"bundlesize": [
{
"path": "./public/**/*.js"
}
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
}
}