-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "studentbus_server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "tsx watch src/server.ts",
"test": "vitest run --dir src/domain",
"test:watch": "vitest --dir src/domain",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "8.1.0",
"@rocketseat/eslint-config": "2.1.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/bcryptjs": "2.4.4",
"@types/node": "20.7.2",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.50.0",
"semantic-release": "22.0.5",
"tsup": "7.2.0",
"tsx": "3.13.0",
"typescript": "5.2.2",
"vite-tsconfig-paths": "4.2.1",
"vitest": "0.34.6"
},
"dependencies": {
"bcryptjs": "2.4.3",
"dayjs": "1.11.10",
"dotenv": "16.3.1",
"fastify": "4.23.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}