-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 754 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 754 Bytes
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
{
"name": "desafio05",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --inspect --transpile-only --ignore-watch node_modules --respawn ./src/server.ts",
"dev-docker": "ts-node-dev --poll --inspect --transpile-only --ignore-watch node_modules --respawn ./src/server.ts",
"lint:fix": "eslint --fix src --ext ts,tsx",
"test": "jest",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.2.3"
},
"dependencies": {
"pg": "^8.5.1",
"typeorm": "^0.2.31"
}
}