-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.93 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
{
"name": "gatsbysample",
"private": true,
"description": "sample gatsby website",
"version": "0.1.0",
"engines": {
"node": "12.18.4"
},
"scripts": {
"build": "gatsby build",
"start": "gatsby develop",
"lint": "prettier --write \"**/*.{js,jsx,json,md,yaml,yml}\"",
"serve": "gatsby serve",
"clean": "gatsby clean",
"unit-tests": "jest --coverage",
"test": "yarn unit-tests",
"code-sanity": "yarn lint",
"precommit": "yarn lint & yarn test"
},
"dependencies": {
"classnames": "^2.2.6",
"dotenv": "^8.2.0",
"gatsby": "^2.21.0",
"gatsby-image": "^2.4.13",
"gatsby-plugin-alias-imports": "^1.0.5",
"gatsby-plugin-netlify-cms": "^4.3.10",
"gatsby-plugin-next-seo": "^1.6.0",
"gatsby-plugin-robots-txt": "^1.5.1",
"gatsby-plugin-sass": "^2.3.0",
"gatsby-plugin-sharp": "^2.6.19",
"gatsby-plugin-sitemap": "^2.4.11",
"gatsby-source-filesystem": "^2.3.1",
"gatsby-source-graphql": "^2.5.0",
"gatsby-transformer-sharp": "^2.5.11",
"gatsby-transformer-yaml": "^2.4.1",
"netlify-cms-app": "^2.12.16",
"node-sass": "^4.14.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet-async": "^1.0.6"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-preset-gatsby": "^0.4.1",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.19.0",
"gatsby-plugin-emotion": "^4.3.10",
"gatsby-plugin-eslint": "^2.0.8",
"gatsby-transformer-json": "^2.4.10",
"gatsby-transformer-remark": "^2.8.25",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^10.2.10",
"prettier": "2.0.5",
"react-test-renderer": "^16.13.1",
"stylelint": "^13.6.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-prettier": "^1.1.2"
}
}