-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (52 loc) · 1.68 KB
/
package.json
File metadata and controls
53 lines (52 loc) · 1.68 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
{
"name": "teste_greenv",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --ignore-watch node_modules --cls --rs src/server.ts",
"typeorm": "typeorm-ts-node-commonjs",
"migration:generate": "typeorm-ts-node-commonjs migration:generate ./src/migrations/default -d ./src/data-source.ts",
"migration:show": "typeorm-ts-node-commonjs migration:show -d ./src/data-source.ts",
"migration:revert": "typeorm-ts-node-commonjs migration:revert -d ./src/data-source.ts",
"migration:run": "typeorm-ts-node-commonjs migration:run -d ./src/data-source.ts",
"build": "tsc",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/server.ts",
"test": "cross-env NODE_ENV=test jest --verbose --runInBand",
"lint": "eslint --fix --ignore-path .gitignore --ext .js,.ts,.tsx ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.3",
"@types/yup": "^0.32.0",
"apperror": "^1.3.2",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jest": "^29.6.1",
"jest-mock": "^29.6.1",
"jsonwebtoken": "^9.0.1",
"pg": "^8.11.1",
"pg-pool": "^3.6.1",
"sqlite3": "^5.1.6",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typeorm": "^0.3.17",
"yup": "^1.2.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/jsonwebtoken": "^9.0.2",
"@types/supertest": "^2.0.12",
"nodemon": "^2.0.22",
"typescript": "^5.1.6"
}
}