-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.81 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
{
"name": "pubparts.xyz",
"version": "1.0.0",
"private": true,
"license": "Apache-2.0",
"description": "pubparts.xyz",
"author": "Jared Harrison <jared@jarediscoding.com>",
"repository": {
"type": "git",
"url": "https://github.com/Jared-Is-Coding/pubparts.xyz"
},
"bugs": {
"url": "https://github.com/Jared-Is-Coding/pubparts.xyz/issues"
},
"scripts": {
"check:node": "node -e \"const major=Number(process.versions.node.split('.')[0]); if (major < 20 || major > 24) { console.error('Unsupported Node.js version ' + process.versions.node + '. Use Node 20.x, 22.x, or 24.x for Gatsby compatibility.'); process.exit(1); }\"",
"predevelop": "npm run check:node",
"develop": "gatsby develop",
"start": "gatsby develop",
"prebuild": "npm run check:node",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"db:generate": "prisma generate",
"db:push": "npm run db:generate && prisma db push",
"db:sync": "tsx scripts/partsSyncRunner.ts",
"db:sync:inventory": "tsx scripts/partsSyncRunner.ts --reason=inventory-admin-save",
"db:bootstrap": "npm run db:generate && tsx scripts/importPartsToPostgres.ts"
},
"dependencies": {
"@prisma/client": "^6.19.3",
"fslightbox-react": "^2.0.0",
"gatsby": "^5.16.1",
"gatsby-adapter-netlify": "^1.4.0",
"gatsby-plugin-image": "^3.16.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sass": "^6.16.0",
"gatsby-plugin-sharp": "^5.16.0",
"gatsby-plugin-sitemap": "^6.16.0",
"gatsby-source-filesystem": "^5.16.0",
"react": "^18.3.1",
"react-bootstrap": "^2.10.4",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"sass": "^1.79.6"
},
"devDependencies": {
"@types/fslightbox-react": "^1.8.0",
"@types/node": "^24.0.0",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"prisma": "^6.19.3",
"tsx": "^4.21.0",
"typescript": "^5.3.3"
},
"overrides": {
"@parcel/watcher": "^2.5.0",
"msgpackr": "^1.11.2",
"postcss": "^8.4.49",
"cookie": "^0.7.0",
"tmp": "^0.2.4",
"@parcel/reporter-dev-server": "2.8.3",
"webpack": "^5.104.0",
"serialize-javascript": "^7.0.3",
"immutable": "^4.3.7 || ^5.0.0",
"file-type": "^21.3.1",
"path-to-regexp": "^0.1.13",
"lodash": "^4.18.0",
"uuid": "^11.1.1",
"js-yaml": "^4.1.1",
"shell-quote": "^1.8.2",
"nanoid": "^3.3.8",
"brace-expansion": "^1.1.13",
"sharp": "^0.33.5"
},
"engines": {
"node": ">=24.0.0 <25.0.0"
}
}