-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.89 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
121
122
123
124
125
{
"name": "my-gatsby-project-dashboard",
"license": "MIT",
"description": "my-gatsby-project-dashboard",
"version": "1.0.0",
"author": "Tri Hoang <[email protected]>",
"dependencies": {
"@emotion/core": "^10.0.28",
"@mdx-js/react": "^1.5.8",
"@theme-ui/presets": "^0.3.0",
"axios": "^0.19.0",
"classnames": "^2.2.6",
"gatsby": "^2.19.18",
"gatsby-image": "^2.2.41",
"gatsby-plugin-canonical-urls": "^2.2.3",
"gatsby-plugin-emotion": "^4.2.2",
"gatsby-plugin-i18n": "^1.0.1",
"gatsby-plugin-manifest": "^2.2.41",
"gatsby-plugin-offline": "^3.1.4",
"gatsby-plugin-react-helmet": "^3.1.22",
"gatsby-plugin-sass": "^2.1.29",
"gatsby-plugin-sharp": "^2.4.5",
"gatsby-plugin-sitemap": "^2.3.4",
"gatsby-plugin-theme-ui": "^0.3.0",
"gatsby-plugin-typescript": "^2.1.27",
"gatsby-source-circleci": "^1.0.3",
"gatsby-source-filesystem": "^2.1.48",
"gatsby-source-netlify": "^1.0.4",
"gatsby-transformer-sharp": "^2.3.15",
"graphql": "^14.6.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-helmet": "^5.2.1",
"theme-ui": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^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/classnames": "^2.2.9",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.1",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-helmet": "^5.0.15",
"@types/theme-ui": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"babel-preset-react-app": "^9.1.1",
"core-js": "^3",
"cross-env": "6.0.0",
"css-loader": "^3.4.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"gatsby-plugin-less": "^3.0.19",
"husky": "^4.2.3",
"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",
"prop-types": "^15.7.2",
"react-docgen-typescript-loader": "^3.6.0",
"react-popper": "^1.3.7",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5",
"webpack": "^4.41.6"
},
"keywords": [
"gatsby",
"react",
"typescript",
"frontend",
"javascript",
"jamstack",
"contentful",
"netlify",
"boilerplate",
"circleci"
],
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"lint": "eslint . --ext=.ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext=.ts,.tsx,.js,.jsx",
"clear-cache": "rm -r .cache",
"types-check": "tsc --noEmit",
"format": "prettier \"**/*.+(js|jsx|json|ts|tsx|css|scss|md|mdx|graphql)\" --write",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/tripheo0412/my-gatsby-project-dashboard"
},
"bugs": {
"url": "https://github.com/tripheo0412/my-gatsby-project-dashboard/issues/"
}
}