-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.13 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
{
"private": true,
"main": "build/index.js",
"scripts": {
"build": "tsc",
"debug": "nodemon -r dotenv/config src/index.ts",
"format": "eslint ./src --fix",
"lint": "eslint ./src",
"start": "node build/index.js",
"test": "firebase emulators:exec \"NODE_ENV=test jest --runInBand\"",
"test:api": "NODE_ENV=test jest --runInBand --group=api",
"test:integration": "firebase emulators:exec \"NODE_ENV=test jest --runInBand --group=integration\"",
"test:unit": "NODE_ENV=test jest --runInBand --group=unit"
},
"devDependencies": {
"@tsconfig/node-lts": "^20.0.0",
"@tsconfig/strictest": "^2.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"dotenv": "^16.4.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"jest-node-exports-resolver": "^1.1.6",
"jest-runner-groups": "^2.2.0",
"nodemon": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}