-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.93 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "stud-io",
"version": "1.0.0",
"description": "The API datasource for Stud.io platform",
"main": "index.js",
"engines": {
"node": "18.15.0"
},
"scripts": {
"build": "npx tsx esbuild.config.ts",
"start": "node ./dist/index.js",
"dev": "tsx watch --ignore ./node_modules --clear-screen=false ./src/main/index.ts",
"test:unit": "jest --config ./jest-unit.config.ts --passWithNoTests --runInBand --no-cache",
"test:unit:watch": "npm run test:unit -- --watch",
"test:e2e": "jest --config ./jest-e2e.config.ts --passWithNoTests --runInBand --no-cache",
"test:e2e:watch": "npm run test:e2e -- --watch",
"prepare": "husky install"
},
"keywords": [],
"author": {
"name": "Caio Rocha",
"email": "[email protected]",
"url": "https://github.com/caiogmrocha"
},
"license": "ISC",
"devDependencies": {
"@esbuild-plugins/tsconfig-paths": "^0.1.2",
"@faker-js/faker": "^7.6.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.4",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.11.11",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"esbuild": "^0.17.18",
"eslint": "^8.29.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"git-commit-msg-linter": "^4.4.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prisma": "^4.16.2",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsx": "^3.12.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@prisma/client": "^4.16.2",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0"
}
}