-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "cronos-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/main/server.js",
"build": "rimraf dist && tsc -p ./tsconfig.build.json",
"dev": "tsnd --respawn src/main/server.ts",
"test": "jest --silent --noStackTrace --runInBand",
"test:unit": "npm test --silent -- -c jest-unit.config.ts",
"test:integration": "pnpm test --silent -- -c jest-integration.config.ts",
"test:verbose": "jest --verbose",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.23.9",
"@babel/preset-env": "7.23.9",
"@babel/preset-typescript": "7.23.3",
"@commitlint/cli": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"@shelf/jest-mongodb": "4.2.0",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/mongodb": "4.0.7",
"@types/supertest": "6.0.2",
"babel-jest": "29.7.0",
"husky": "9.0.10",
"jest": "29.7.0",
"supertest": "6.3.4",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0"
},
"dependencies": {
"dotenv": "16.4.1",
"cors": "2.8.5",
"express": "4.18.2",
"mongodb": "6.3.0",
"rimraf": "5.0.5",
"typescript": "5.3.3",
"zod": "3.22.4"
},
"hooks": {
"pre-commit": "commitlint.config.js"
}
}