-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.13 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
{
"name": "personal-tech-blog",
"description": "A simple tech blog created with Gatsby",
"version": "0.0.0",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"cypress-headless": "cypress run --browser chrome --headless",
"cypress-web": "cypress open",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "gatsby develop",
"serve": "gatsby serve",
"cy:run": "cypress run",
"unit-test": "jest --config jestconfig.json",
"test-integration": "start-server-and-test serve http://localhost:9000 cy:run",
"clean": "gatsby clean"
},
"dependencies": {
"@mdx-js/mdx": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"gatsby": "5.7.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-image": "^3.7.0",
"gatsby-plugin-manifest": "^5.7.0",
"gatsby-plugin-mdx": "^5.7.0",
"gatsby-plugin-offline": "^6.7.0",
"gatsby-plugin-react-helmet": "^6.7.0",
"gatsby-plugin-sharp": "^5.7.0",
"gatsby-plugin-styled-components": "^6.7.0",
"gatsby-plugin-typescript": "^5.7.0",
"gatsby-remark-images": "^7.7.0",
"gatsby-source-filesystem": "^5.7.0",
"gatsby-transformer-sharp": "^5.7.0",
"jquery": "^3.6.4",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-highlight.js": "^1.0.7",
"react-icons": "^4.8.0",
"react-select": "^5.7.0",
"react-switch": "^7.0.0",
"styled-components": "^5.3.9"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.1",
"@types/jquery": "^3.5.16",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-helmet": "^6.1.6",
"@types/react-highlight.js": "^1.0.2",
"@types/react-select": "^5.0.1",
"@types/styled-components": "^5.1.26",
"codecov": "^3.8.3",
"cypress": "^12.7.0",
"expect": "^29.5.0",
"gatsby-plugin-playground": "^1.0.6",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.4",
"start-server-and-test": "^2.0.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}