-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.77 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
{
"name": "cliq-dify-agent-proxy",
"version": "1.0",
"description": "Proxy server for the Cliq with Dify agent",
"main": "index.js",
"type": "module",
"author": "Sam <sam@mixmedia.com>",
"license": "Apache-2.0",
"scripts": {
"dev": "nodemon",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.cjs",
"start": "node dist/bundle.js",
"test": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest --testNamePattern='createChatMessage'",
"test:error": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest --testNamePattern='error'"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/node": "^7.25.0",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@types/node": "^22.4.0",
"autoprefixer": "latest",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.0",
"inter-ui": "^4.0.2",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"postcss": "latest",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.2",
"style-loader": "^4.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@fastify/one-line-logger": "^2.0.0",
"@fastify/static": "^8.0.2",
"@fastify/swagger": "^9.2.0",
"@fastify/swagger-ui": "^5.1.0",
"dify-client": "^2.3.2",
"dotenv": "^16.4.5",
"fastify": "^5.1.0",
"qs": "^6.13.1",
"uuid": "^11.0.3",
"zlib": "^1.0.5"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}