forked from justlovemaki/AIClient-2-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 809 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 809 Bytes
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
{
"type": "module",
"dependencies": {
"axios": "^1.10.0",
"dotenv": "^16.4.5",
"google-auth-library": "^10.1.0",
"lodash": "^4.17.21",
"undici": "^7.12.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.28.0",
"@jest/globals": "^29.7.0",
"babel-jest": "^30.0.5",
"babel-plugin-transform-import-meta": "^2.3.3",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"supertest": "^6.3.3"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"test:silent": "jest --silent",
"test:unit": "node run-tests.js --unit",
"test:integration": "node run-tests.js --integration",
"test:summary": "node test-summary.js"
}
}