-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.32 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.32 KB
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
{
"name": "emojit.fun",
"private": true,
"description": "Guess anything with emojis!",
"version": "0.1.0",
"author": "Nicolas M. Pardo <nicolasm@nikodermus.media>",
"dependencies": {
"@reach/router": "^1.3.3",
"classnames": "^2.2.6",
"esm": "^3.2.25",
"gatsby": "^2.20.18",
"gatsby-image": "^2.3.2",
"gatsby-plugin-google-analytics": "^2.2.2",
"gatsby-plugin-google-gtag": "^2.0.0",
"gatsby-plugin-manifest": "^2.3.3",
"gatsby-plugin-offline": "^3.1.2",
"gatsby-plugin-react-helmet": "^3.2.2",
"gatsby-plugin-sharp": "^2.5.4",
"gatsby-plugin-stylus": "^2.2.1",
"gatsby-source-filesystem": "^2.2.2",
"gatsby-transformer-sharp": "^2.4.4",
"lodash.get": "^4.4.2",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-loadable": "^5.5.0",
"react-transition-group": "^4.3.0",
"rupture": "^0.7.1"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"cz-conventional-changelog": "3.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.3.0",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^4.2.3",
"lint-staged": ">=10",
"prettier": "^1.19.1"
},
"keywords": [
"gatsby",
"nikodermus",
"emoji"
],
"license": "MIT",
"scripts": {
"build": "npx --node-arg '-r esm' gatsby build",
"develop": "npx --node-arg '-r esm' gatsby develop",
"start": "yarn develop",
"serve": "npx --node-arg '-r esm' gatsby serve",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"clean": "gatsby clean"
},
"repository": {
"type": "git",
"url": "https://github.com/nikodermus/emojit.fun"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">= 13"
}
}