-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.46 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
{
"name": "zoom-shuffle-bot",
"version": "3.0.20",
"description": "",
"main": "chatbot.js",
"type": "module",
"scripts": {
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest --testPathIgnorePatterns=test/integration",
"test:integration": "firebase emulators:exec --only firestore --project shuffle-zoom-bot \"jest --testPathPattern=test/integration --runInBand\"",
"start": "node chatbot.js",
"dev": "nodemon chatbot.js",
"lint": "eslint . --ext .js,.cjs",
"lint:fix": "eslint --fix . .js,.cjs",
"db:up": "firebase emulators:start --project shuffle-zoom-bot"
},
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/firestore": "^7.10.0",
"desm": "^1.3.1",
"dotenv": "^16.4.5",
"env-schema": "^6.0.0",
"fast-json-stringify": "^6.0.0",
"fastify": "^5.1.0",
"fastify-plugin": "^5.0.1",
"fluent-json-schema": "^4.2.1",
"http-errors": "^2.0.0",
"node-fetch": "^3.3.2",
"pg": "^8.13.1",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@jest/globals": "^29.7.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"firebase-tools": "^13.25.0",
"firestore-jest-mock": "^0.25.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3"
}
}