-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.24 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.24 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
{
"name": "blog",
"version": "1.0.0",
"private": true,
"description": "blog",
"author": "polubis",
"keywords": [
"gatsby"
],
"engines": {
"node": "22.17.0",
"npm": "10.9.2"
},
"scripts": {
"benchmark": "node benchmark.js",
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "npm run clean && gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "npx @biomejs/biome check",
"lint:fix": "npx @biomejs/biome check --write",
"format": "npx @biomejs/biome format --write",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"e2e:1": "cypress run --spec \"cypress/e2e/user-profile.cy.ts\"",
"e2e:all": "cypress run",
"e2e:check-snapshots": "npm run build && start-server-and-test serve http://localhost:9000 \"cypress run\"",
"ci:lint": "npm run lint",
"ci:e2e": "npm run build && start-server-and-test serve http://localhost:9000 \"cypress run --env failOnSnapshotDiff=false\"",
"ci:units": "npm run test",
"prepare": "husky"
},
"dependencies": {
"@dagrejs/dagre": "^1.1.5",
"@greenonsoftware/react-kit": "^0.1.0",
"@tailwindcss/typography": "^0.5.16",
"@xyflow/react": "^12.8.2",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"firebase": "^11.10.0",
"gatsby": "^5.14.5",
"gatsby-plugin-manifest": "^5.14.0",
"gatsby-plugin-mdx": "^5.14.1",
"gatsby-plugin-sitemap": "^6.14.0",
"gatsby-source-filesystem": "^5.14.0",
"katex": "^0.16.22",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"prismjs": "^1.30.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"rxjs": "^7.8.2",
"tailwind-merge": "^3.3.1",
"zustand": "^4.4.3"
},
"devDependencies": {
"@babel/preset-typescript": "^7.27.1",
"@biomejs/biome": "^2.1.2",
"@greenonsoftware/vibetest": "^0.0.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/cypress-image-snapshot": "^3.1.9",
"@types/jest": "^30.0.0",
"@types/katex": "^0.16.7",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^22.14.1",
"@types/prismjs": "^1.26.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/webpack-bundle-analyzer": "^4.7.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"autoprefixer": "^10.4.21",
"babel-jest": "^30.0.5",
"babel-preset-gatsby": "^3.14.0",
"cypress": "^14.5.2",
"cypress-image-snapshot": "^4.0.1",
"eslint": "^8.50.0",
"gatsby-plugin-postcss": "^6.14.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-root-import": "^2.0.9",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"prettier": "^3.6.2",
"start-server-and-test": "^2.0.12",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"webpack-bundle-analyzer": "^4.10.2"
}
}