-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "onboard-matheus-santana",
"version": "1.0.0",
"description": "Small project for onboard backend at taqtile",
"main": "dist/index.js",
"type": "module",
"scripts": {
"migrate:postgres": "dotenv -e test.env -- npx prisma migrate deploy",
"compile": "rm -rf dist/ && tsc",
"test": "dotenv -e test.env -- mocha test/index.ts",
"dev": "dotenv -e .env -- nodemon",
"start": "npm run compile && dotenv -e .env -- node dist/index.js",
"seed": "tsx seed/index.ts"
},
"author": "Matheus Gonçalves Sant'Ana",
"license": "ISC",
"dependencies": {
"@apollo/server": "4.11.0",
"@prisma/client": "5.19.1",
"bcrypt": "5.1.1",
"dotenv-cli": "7.4.2",
"graphql": "16.9.0",
"jsonwebtoken": "9.0.2",
"prisma": "5.19.1"
},
"devDependencies": {
"@eslint/js": "9.9.1",
"@types/bcrypt": "5.0.2",
"@types/chai": "4.3.19",
"@types/jsonwebtoken": "9.0.6",
"@types/mocha": "10.0.7",
"@types/node": "22.5.3",
"axios": "1.7.7",
"chai": "5.1.1",
"eslint": "9.9.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.9.0",
"mocha": "10.7.3",
"nodemon": "3.1.4",
"prettier": "3.3.3",
"tsx": "4.19.0",
"typescript": "5.5.4",
"typescript-eslint": "8.4.0"
}
}