-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.52 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.52 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
{
"name": "aboveunder",
"version": "0.1.0",
"private": true,
"dependencies": {
"concurrently": "^9.2.1",
"csvtojson": "^2.0.14",
"exif": "^0.6.0",
"fs-extra": "^11.3.4",
"gls": "^3.0.1",
"jimp": "^0.22.12",
"moment": "^2.30.1",
"normalize-range": "^0.1.2",
"query-string": "^9.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-google-maps": "^9.4.5",
"react-helmet": "^6.1.0",
"react-image-magnify": "^2.7.4",
"react-markdown": "^10.1.0",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"semantic-ui-react": "^2.1.5",
"typestyle": "^2.4.0"
},
"scripts": {
"dev": "concurrently -n src,tools,lambda,test \"npm run dev-src\" \"npm run dev-tools\" \"npm run dev-lambda\" \"npm run test:watch\"",
"compile": "tsc --noEmit",
"dev-src": "vite",
"dev-tools": "tsc -p ./tools/tsconfig.json -w",
"dev-lambda": "tsc -p ./src/lambda/tsconfig.json -w",
"test": "vitest run",
"test:watch": "vitest",
"build": "npm run build-src && npm run build-tools && npm run build-lambda",
"build-src": "vite build",
"build-tools": "tsc -p ./tools/tsconfig.json",
"build-lambda": "tsc -p ./src/lambda/tsconfig.json",
"deploy": "npm run build-tools && npm run build-lambda && npm run generateProductsJson && npm run build-src",
"generateProductsJson": "node dist/tools/generateProductsJson",
"importFitz": "node dist/tools/importFitzPrice",
"importPrintful": "node dist/tools/importPrintfulPrice",
"detectAndAddPrints": "node dist/tools/detectAndAddPrints",
"generateThumbs": "node dist/tools/generateThumbs",
"processImages": "node dist/tools/processImages",
"preview": "vite preview"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/google.maps": "^3.58.1",
"@types/node": "^22.19.17",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@types/react-helmet": "^6.1.11",
"@types/react-router-dom": "^5.3.3",
"@types/request": "^2.48.13",
"@vitejs/plugin-react": "^6.0.1",
"husky": "^4.3.8",
"prettier": "^3.8.1",
"pretty-quick": "^4.2.2",
"request": "^2.88.2",
"typescript": "^5.9.3",
"vite": "^8.0.5",
"vitest": "^4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}