-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
120 lines (120 loc) · 3.47 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "game3.js",
"description": "Website for game3js.com",
"version": "0.0.1",
"leadMaintainer": "Paul Gadi <[email protected]>",
"keywords": [
"website",
"www",
"gatsby"
],
"license": "MIT",
"engines": {
"node": "10.x"
},
"scripts": {
"prebuild": "rimraf public",
"postinstall": "rimraf .git/hooks/* && node node_modules/husky/husky.js install",
"develop": "gatsby develop",
"build": "gatsby build --prefix-paths",
"serve": "gatsby serve",
"lint": "aegir lint && stylelint \"**/*.css\"",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test": "npm run test:e2e:hook",
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open",
"test:e2e:hook": "start-server-and-test develop http://localhost:8000 cy:run"
},
"dependencies": {
"@researchgate/react-intersection-observer": "~0.7.4",
"axios": "~0.18.0",
"classnames": "^2.2.6",
"gatsby": "^2.3.33",
"gatsby-plugin-google-gtag": "^1.0.10",
"gatsby-plugin-ipfs": "^2.0.2",
"gatsby-plugin-layout": "^1.0.7",
"gatsby-plugin-manifest": "^2.0.7",
"gatsby-plugin-postcss": "^2.0.0",
"gatsby-plugin-react-helmet": "^3.0.1",
"intersection-observer": "~0.5.0",
"ipfs": "~0.41.0",
"is-ipfs": "~0.6.3",
"normalize.css": "^8.0.0",
"postcss-import": "^12.0.0",
"postcss-preset-moxy": "^2.3.1",
"prop-types": "^15.6.2",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-github-btn": "^1.2.0",
"react-helmet": "^5.2.0",
"react-intl": "^2.7.1",
"react-live": "^2.2.2",
"react-markdown": "^4.0.3",
"react-resize-detector": "^3.1.3",
"react-scroll-to-component": "^1.0.2",
"react-slick": "~0.23.1",
"react-toastify": "^4.4.0",
"react-tooltip": "^3.9.0",
"react-youtube": "^7.8.0",
"service-worker-gateway": "~0.1.14"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@commitlint/config-conventional": "^7.1.2",
"aegir": "^17.0.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-macros": "^2.4.2",
"babel-preset-moxy": "^2.3.5",
"commitlint": "^7.2.1",
"cypress": "^3.2.0",
"eslint": "^5.8.0",
"eslint-config-aegir": "^1.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"external-svg-sprite-loader": "^4.0.0-beta.7",
"file-loader": "^2.0.0",
"gatsby-plugin-webpack-bundle-analyzer": "^1.0.5",
"husky": "^1.2.0",
"lint-staged": "^8.0.4",
"postcss-reporter": "^6.0.0",
"raw-loader": "~0.5.1",
"rimraf": "^2.6.2",
"serviceworker-webpack-plugin": "^1.0.1",
"start-server-and-test": "^1.7.11",
"stylelint": "^9.7.0",
"stylelint-config-moxy": "^5.0.0",
"svg-css-modules-loader": "^1.6.1",
"svgo-loader": "^2.2.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.css": [
"stylelint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"browserslist": [
"last 1 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions",
"last 1 IE versions",
"last 3 ChromeAndroid versions",
"last 2 iOS versions"
],
"private": true
}