-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.81 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
{
"name": "ioasys",
"version": "1.0.0",
"description": "Desafio Ioasys",
"main": "index.ts",
"scripts": {
"start": "ts-node src/main/server.ts",
"studio": "npx prisma studio",
"test": "jest --passWithNoTests --runInBand --noStackTrace",
"test:verbose": "jest --passWithNoTests",
"test:unit": "npm test -- --watch -c jest-unit-config.js ",
"test:integration": "npm test -- --watch --runInBand -c jest-integration-config.js ",
"test:staged": "npm test -- --findRelatedTests --runInBand",
"test:ci": "npm test -- --coverage --runInBand",
"migrate": "npx prisma migrate dev --name",
"prepare": "husky install"
},
"author": "Gustavo Santos",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/jest": "^26.0.21",
"@types/jsonwebtoken": "^8.5.1",
"@types/supertest": "^2.0.10",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "^5.1.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prisma": "^2.19.0",
"supertest": "^6.1.3",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.ts": [
"npm run test:staged",
"eslint --cache --fix"
],
"*.prisma": "npx prisma format"
},
"dependencies": {
"@prisma/client": "^2.19.0",
"@types/express": "^4.17.11",
"bcrypt": "^5.0.1",
"express": "^4.17.1",
"fast-glob": "^3.2.5",
"jsonwebtoken": "^8.5.1",
"validator": "^13.5.2"
}
}