-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 3.23 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
{
"name": "jamstack-javascript-boilerplate",
"private": true,
"description": "jamstack-javascript-boilerplate",
"version": "1.0.0",
"author": "Tri Hoang <[email protected]>",
"dependencies": {
"cross-env": "6.0.0",
"gatsby": "^2.20.28",
"gatsby-image": "^2.2.41",
"gatsby-plugin-canonical-urls": "^2.2.3",
"gatsby-plugin-i18n": "^1.0.1",
"gatsby-plugin-manifest": "^2.3.6",
"gatsby-plugin-offline": "^3.0.34",
"gatsby-plugin-react-helmet": "^3.1.22",
"gatsby-plugin-sharp": "^2.4.5",
"gatsby-plugin-sitemap": "^2.3.5",
"gatsby-source-filesystem": "^2.1.48",
"gatsby-transformer-sharp": "^2.3.14",
"graphql": "^14.6.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"snyk": "^1.316.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@lhci/cli": "^0.3.12",
"@storybook/addon-a11y": "^5.3.13",
"@storybook/addon-docs": "^5.3.13",
"@storybook/addon-info": "^5.3.13",
"@storybook/addon-knobs": "^5.3.13",
"@storybook/addon-links": "^5.3.13",
"@storybook/addon-viewport": "^5.3.13",
"@storybook/addons": "^5.3.13",
"@storybook/react": "^5.3.13",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.0",
"@types/react": "^16.9.19",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"babel-preset-gatsby": "^0.2.29",
"core-js": "^3.6.4",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"gatsby-plugin-less": "^3.0.19",
"gatsby-plugin-sass": "^2.1.29",
"husky": "^4.2.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.1.0",
"less": "^3.11.1",
"lint-staged": "^10.0.7",
"netlify-cli": "^2.32.0",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"react-test-renderer": "^16.12.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.41.6"
},
"keywords": [
"gatsby",
"react",
"frontend",
"javascript",
"jamstack",
"contentful",
"netlify",
"boilerplate",
"circleci"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"lint": "eslint . --ext=.js,.jsx",
"lint:fix": "eslint . --ext=.js,.jsx",
"clear-cache": "rm -r .cache",
"format": "prettier \"**/*.+(js|jsx|json|css|scss|md|mdx|graphql)\" --write",
"start": "rm -rf .cache && cross-env NODE_ENV=development yarn run develop",
"serve": "gatsby serve",
"test": "cross-env NODE_ENV=test jest",
"ci-test": "cross-env NODE_ENV=test jest -u -w 2",
"test:watch": "cross-env NODE_ENV=test jest --watchAll",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o build-storybook",
"lhci:run": "lhci autorun",
"lhci:upload": "lhci upload",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"repository": {
"type": "git",
"url": "https://github.com/tripheo0412/jamstack-javascript-boilerplate"
},
"bugs": {
"url": "https://github.com/tripheo0412/jamstack-javascript-boilerplate/issues"
},
"snyk": true
}