forked from polubis/4markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 4.17 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 4.17 KB
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
{
"name": "blog",
"version": "1.0.0",
"private": true,
"description": "blog",
"author": "polubis",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"lint:fix": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --fix",
"typecheck": "tsc --noEmit",
"prepare:husky": "husky install",
"postinstall": "npm run prepare:husky",
"test": "jest",
"test:watch": "jest --watch",
"cy:open-dev": "cypress open --browser chrome --e2e --config baseUrl=http://localhost:8000",
"cy:open-prod": "cypress open --browser chrome --e2e --config baseUrl=http://localhost:9000",
"cy:run-dev": "cypress run --browser chrome --config baseUrl=http://localhost:8000",
"cy:run-prod": "cypress run --browser chrome --config baseUrl=http://localhost:9000",
"test:e2e-dev": "start-server-and-test develop http://localhost:8000 cy:open-dev",
"test:e2e-prod": "npm run build && start-server-and-test serve http://localhost:9000 cy:open-prod",
"test:ci": "npm run test",
"test:e2e-run-dev": "start-server-and-test develop http://localhost:8000 cy:run-dev",
"test:e2e-run-prod": "npm run build && start-server-and-test serve http://localhost:9000 cy:run-prod",
"test:e2e:ci": "npm run build && start-server-and-test serve http://localhost:9000 cy:run-prod",
"lint:ci": "npm run lint"
},
"dependencies": {
"@mdx-js/react": "^2.3.0",
"classnames": "^2.3.2",
"date-fns": "^3.0.6",
"firebase": "^10.7.1",
"gatsby": "^5.12.4",
"gatsby-plugin-dark-mode": "^1.1.2",
"gatsby-plugin-google-gtag": "^5.12.0",
"gatsby-plugin-image": "^3.12.0",
"gatsby-plugin-manifest": "^5.12.0",
"gatsby-plugin-mdx": "^5.12.0",
"gatsby-plugin-sharp": "^5.12.0",
"gatsby-plugin-sitemap": "^6.12.0",
"gatsby-source-filesystem": "^5.12.0",
"gatsby-transformer-sharp": "^5.12.0",
"markdown-to-jsx": "^7.3.2",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"zustand": "^4.4.3"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.2",
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@testing-library/cypress": "^10.0.1",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.1",
"@types/cypress-image-snapshot": "^3.1.9",
"@types/jest": "^29.5.5",
"@types/node": "^20.3.3",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.4",
"@types/prismjs": "^1.26.3",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"autoprefixer": "^10.4.16",
"babel-jest": "^29.7.0",
"babel-preset-gatsby": "^3.12.0",
"cypress": "^13.3.1",
"cypress-image-snapshot": "^4.0.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gatsby-cypress": "^3.12.0",
"gatsby-plugin-postcss": "^6.12.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-root-import": "^2.0.9",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"start-server-and-test": "^2.0.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6"
}
}