-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.71 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.71 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
{
"name": "fynd-storefront-ssr",
"version": "1.0.0",
"description": "Production-ready Express SSR storefront powered by Fynd Platform Storefront GraphQL",
"main": "dist/server.js",
"scripts": {
"dev": "npm-run-all --parallel dev:server dev:styles",
"dev:server": "node --inspect=9229 -r tsx/cjs --watch src/server.ts",
"dev:debug": "node --inspect=9229 -r tsx/cjs --inspect=9229 --watch src/server.ts",
"debug": "node --inspect=9229 -r tsx/cjs src/server.ts",
"dev:styles": "npm-run-all --parallel dev:tailwind dev:less",
"dev:tailwind": "node scripts/tailwind-build.js --watch",
"dev:less": "node scripts/less-build.js --watch",
"build": "npm-run-all build:tailwind build:ts build:styles build:optimize",
"build:tailwind": "NODE_ENV=production node scripts/tailwind-build.js",
"build:full": "npm-run-all build:* || true",
"build:ts": "tsc",
"build:styles": "NODE_ENV=production node scripts/less-build.js",
"build:optimize": "NODE_ENV=production node scripts/css-optimize.js",
"build:codegen": "npm run codegen || echo 'GraphQL codegen skipped - requires valid Fynd credentials'",
"start": "node dist/server.js",
"codegen": "graphql-codegen --config codegen.yml",
"styles": "node scripts/less-build.js",
"styles:watch": "node scripts/less-build.js --watch",
"lint": "eslint src --ext .ts,.js",
"lint:fix": "eslint src --ext .ts,.js --fix",
"format": "prettier --write 'src/**/*.{ts,js,json,less}'",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"type-check": "tsc --noEmit",
"kill-port": "node scripts/kill-port.js",
"cleanup": "node scripts/kill-port.js 3000"
},
"keywords": [
"fynd",
"storefront",
"ssr",
"express",
"graphql",
"apollo",
"ecommerce"
],
"author": "",
"license": "MIT",
"dependencies": {
"@apollo/client": "^4.0.4",
"@cloudflare/containers": "^0.0.28",
"compression": "^1.8.1",
"cors": "^2.8.5",
"cross-fetch": "^4.1.0",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"express-rate-limit": "^8.0.1",
"graphql": "^16.11.0",
"helmet": "^8.1.0",
"lru-cache": "^11.2.1",
"nunjucks": "^3.2.4",
"pino": "^9.9.1",
"pino-http": "^10.5.0",
"pino-pretty": "^13.1.1",
"uuid": "^11.1.0",
"zod": "^4.1.5"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@graphql-codegen/cli": "^5.0.7",
"@graphql-codegen/typed-document-node": "^5.1.2",
"@graphql-codegen/typescript": "^4.1.6",
"@graphql-codegen/typescript-operations": "^4.6.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/cli": "^4.1.12",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.1.12",
"@tailwindcss/typography": "^0.5.16",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@types/nunjucks": "^3.2.6",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"autoprefixer": "^10.4.21",
"chokidar": "^3.6.0",
"chokidar-cli": "^3.0.0",
"cssnano": "^7.1.1",
"eslint": "^9.34.0",
"eslint-plugin-boundaries": "^5.0.1",
"eslint-plugin-import": "^2.32.0",
"jest": "^30.1.3",
"less": "^4.4.1",
"less-loader": "^12.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"prettier": "^3.6.2",
"supertest": "^7.1.4",
"tailwindcss": "^4.1.12",
"ts-jest": "^29.4.1",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}