-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
94 lines (94 loc) · 2.58 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
{
"name": "@neontribe/www",
"description": "Neontribe website built with Gatsby",
"version": "1.0.0",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.5.2",
"@fortawesome/free-brands-svg-icons": "6.5.2",
"@fortawesome/react-fontawesome": "0.2.2",
"classnames": "2.5.1",
"date-fns": "1.30.1",
"focus-trap": "7.1.0",
"gatsby": "2.32.13",
"gatsby-image": "2.4.9",
"gatsby-plugin-google-tagmanager": "2.3.7",
"gatsby-plugin-manifest": "2.4.14",
"gatsby-plugin-offline": "2.2.10",
"gatsby-plugin-react-helmet": "3.3.6",
"gatsby-plugin-sharp": "2.6.14",
"gatsby-plugin-sitemap": "2.4.7",
"gatsby-plugin-styled-jsx": "3.3.7",
"gatsby-remark-copy-linked-files": "2.3.7",
"gatsby-remark-images": "3.3.13",
"gatsby-remark-prismjs": "3.5.6",
"gatsby-remark-source-name": "1.0.0",
"gatsby-source-filesystem": "2.3.14",
"gatsby-transformer-remark": "2.8.19",
"gatsby-transformer-sharp": "2.5.7",
"lodash.get": "4.4.2",
"prismjs": "1.29.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "5.2.1",
"react-malarquee": "0.0.13",
"rehype-react": "3.1.0",
"remark": "13.0.0",
"remark-html": "13.0.1",
"remark-preset-lint-recommended": "5.0.0",
"slugify": "1.6.6",
"styled-jsx": "3.3.0"
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "yarn run develop",
"format": "prettier --write \"src/**/*.js\"",
"test": "yarn lint && jest",
"lint": "eslint .",
"now-build": "npm run build"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "10.4.1",
"babel-eslint": "10.1.0",
"babel-jest": "25.5.1",
"eslint": "6.8.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.34.2",
"eslint-plugin-react-hooks": "2.5.1",
"husky": "4.2.5",
"jest": "25.5.4",
"lint-staged": "12.5.0",
"prettier": "2.7.1"
},
"engines": {
"node": "^20",
"yarn": "1.22.19"
},
"repository": {
"type": "git",
"url": "https://github.com/neontribe/www"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"postcommit": "git update-index --again"
}
},
"resolutions": {
"remark-mdx": "2.0.0-next.9"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write"
],
"*.js": [
"eslint"
]
},
"homepage": "https://github.com/neontribe/www#readme"
}