-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·62 lines (62 loc) · 1.8 KB
/
package.json
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
{
"name": "catalog-digitization",
"version": "2.1.1",
"description": "Build For Bharat Hackathon Project",
"main": "index.ts",
"scripts": {
"prepare": "husky install",
"start": "node dist/index.js",
"start:prod": "npm run build && npm run start",
"build": "rimraf ./dist && tsc && resolve-tspaths",
"prettier:fix": "prettier --write ./**/**/*.{js,ts,jsx,tsx}",
"dev": "export NODE_ENV=local && ts-node-dev -r tsconfig-paths/register src/index.ts --respawn --transpileOnly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nullsploit01/catalog-digitization.git"
},
"author": "nullsploit01",
"license": "MIT",
"bugs": {
"url": "https://github.com/nullsploit01/catalog-digitization/issues"
},
"homepage": "https://github.com/nullsploit01/catalog-digitization#readme",
"dependencies": {
"axios": "^1.6.7",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-winston": "^4.2.0",
"get-image-colors": "^4.0.1",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
"openai": "^4.26.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/get-image-colors": "^4.0.5",
"@types/gulp": "^4.0.17",
"@types/mime-types": "^2.1.4",
"@types/multer": "^1.4.11",
"@types/node": "^20.10.5",
"del": "^7.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"resolve-tspaths": "^0.8.17",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"lint-staged": {
"**/*.{js,ts,tsx,jsx}": [
"npm run prettier:fix"
]
}
}