-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.48 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
{
"name": "shopify-order-management",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf ./dist && tsc -p ./tsconfig.json && tsc-alias",
"start:prod": "node -r tsconfig-paths/register ./dist/index.js",
"dev": "nodemon",
"prepare": "husky",
"eslint": "eslint './src/**/*.ts'",
"lint:check": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "npm run lint:check -- --fix",
"prettier:check": "prettier --check \"{src,test}/**/*.ts\"",
"prettier:fix": "prettier --write .",
"lint-staged": "npx lint-staged",
"db:migrate": "supabase link --project-ref $SUPABASE_PROJECT_REF -p $SUPABASE_DB_PASSWORD && supabase db push --include-all"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@langchain/community": "^0.3.42",
"@langchain/core": "^0.3.55",
"@shopify/shopify-api": "^11.3.0",
"@supabase/supabase-js": "^2.49.4",
"@types/axios": "^0.9.36",
"@types/cors": "^2.8.18",
"@types/multer": "^1.4.12",
"add": "^2.0.6",
"axios": "^1.9.0",
"basic-ftp": "^5.0.5",
"bcrypt": "^6.0.0",
"body-parser": "^2.2.0",
"cheerio": "^1.0.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.19.2",
"googleapis": "^148.0.0",
"html-to-text": "^9.0.5",
"http-status": "^1.7.4",
"jsonwebtoken": "^9.0.2",
"langchain": "^0.3.27",
"lodash": "^4.17.21",
"multer": "^2.0.0",
"openai": "^4.98.0",
"pdf-parse": "^1.1.1",
"pg": "^8.13.0",
"reflect-metadata": "^0.2.2",
"xml-js": "^1.6.11",
"yarn": "^1.22.22",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/html-to-text": "^9.0.4",
"@types/jsonwebtoken": "^9.0.9",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"concurrently": "^8.2.2",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"supabase": "^2.22.12",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
},
"lint-staged": {
"src/**/*.{ts}": [
"yarn lint:fix",
"yarn prettier:fix"
]
}
}