-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.56 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
{
"name": "controle-academico-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts",
"prisma:migration": "npx prisma migrate dev",
"prisma:apply": "npx prisma generate",
"test": "mocha --require ts-node/register tests/**/*.test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.18.0",
"axios": "^1.7.5",
"chai-http": "^5.0.0",
"cheerio": "^1.0.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"he": "^1.2.0",
"iconv-lite": "^0.6.3",
"jsonwebtoken": "^9.0.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.19",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/he": "^1.2.3",
"@types/jsonwebtoken": "^9.0.6",
"@types/mocha": "^10.0.8",
"@types/node": "^22.5.5",
"@types/sinon": "^17.0.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"gulp": "^5.0.0",
"gulp-nodemon": "^2.2.1",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^6.0.0-alpha.1",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"prisma": "^5.18.0",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.5.4"
}
}