-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.29 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.29 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
66
{
"name": "api-lets-play",
"version": "1.0.0",
"description": "An api of the website let's play that aims to organize lobbies of differents matches of differents sports",
"main": "index.js",
"scripts": {
"build": "tsc && npx prisma generate && npx prisma migrate deploy",
"start": "node dist/src/server.js",
"dev:empty": "dotenv -e .env.test prisma migrate dev && dotenv -e .env.test nodemon src/server.ts",
"dev:full": "dotenv -e .env.test prisma migrate dev && dotenv -e .env.test prisma db seed && dotenv -e .env.test nodemon src/server.ts",
"test:integration": "dotenv -e .env.test -- jest --coverage -i --no-cache --config jestIntegration.config.js --testPathPattern=tests/integration",
"test:unit": "dotenv -e .env.test -- jest --coverage --no-cache --config jestUnit.config.js --testPathPattern=tests/unit"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"keywords": [
"sport",
"team",
"lobby",
"organization"
],
"author": "Victor Hugo Borges Simões (github: https://github.com/VicterHuger)",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^7.5.0",
"@prisma/client": "^4.4.0",
"bcrypt": "^5.0.1",
"cep-promise": "^4.2.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"dotenv-cli": "^6.0.0",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"joi": "^17.6.2",
"jsonwebtoken": "^8.5.1",
"string-strip-html": "^8.3.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jest": "^29.1.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.7.23",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"jest": "^29.1.2",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"prisma": "^4.4.0",
"supertest": "^6.3.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}