-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.05 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.05 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "appointful",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": "18"
},
"scripts": {
"dev": "tsx watch src/infra/http/server.ts",
"lint": "eslint src --max-warnings=0",
"typecheck": "tsc --project tsconfig.json --noEmit",
"prepare": "husky install",
"build": "tsup src",
"start": "node ./dist/infra/http/server.js",
"test": "vitest run -c vitest.unit.config.ts",
"test:watch": "vitest -c vitest.unit.config.ts",
"test:create-prisma-environment": "npm link ./prisma/vitest-environment-prisma",
"test:install-prisma-environment": "npm link vitest-environment-prisma",
"pretest:e2e": "run-s test:create-prisma-environment test:install-prisma-environment",
"test:e2e": "vitest run -c vitest.e2e.config.ts",
"test:e2e:watch": "vitest -c vitest.e2e.config.ts",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@prisma/client": "^4.13.0",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"swagger-ui-express": "^4.6.2",
"uuid": "^9.0.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.14",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.0",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"prettier": "2.8.1",
"prisma": "^4.11.0",
"sqlite3": "^5.1.4",
"supertest": "^6.3.3",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.1",
"tsup": "^6.7.0",
"tsx": "^3.12.6",
"typescript": "*",
"vite-tsconfig-paths": "^4.0.3",
"vitest": "^0.30.1"
},
"description": "A simple appointments api"
}