-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.4 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.4 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
{
"name": "sprint5",
"version": "1.0.0",
"main": "index.ts",
"author": "Saul <saul.contatodev@gmail.com>, Marcio <marciogabrieloficial@hotmail.com>, Leonardo <leo.gindri@outlook.com>, Pedro <pedroh1001@hotmail.com>, Gabriel <gabrielbsnsp@gmail.com>, Andressa <Andressalsmenezes@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --ignore-watch node_modules src/server.ts",
"build": "tsc",
"start": "node dist/src/server.js",
"typeorm": "typeorm-ts-node-commonjs",
"test": "cross-env NODE_ENV=test SECRET_KEY=secret_key jest --verbose --runInBand"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.15",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/jest": "^28.1.4",
"@types/supertest": "^2.0.12",
"eslint": "^8.29.0",
"jest": "^28.1.2",
"sqlite3": "^5.0.8",
"supertest": "^6.2.4",
"ts-jest": "^28.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"bcryptjs": "^2.4.3",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.0",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.6",
"yup": "^0.32.11"
}
}