-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 919 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 919 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
27
28
29
30
31
32
33
34
35
{
"name": "teste-jobs-api-sequelize",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"create-test-db": "NODE_ENV=test sequelize-cli db:create",
"drop-test-db": "NODE_ENV=test sequelize-cli db:drop",
"dev": "ts-node-dev --transpile-only --ignore-watch node_modules src/server.ts",
"test": "jest --watchAll"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^6.1.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/supertest": "^2.0.12",
"fishery": "^2.2.2",
"jest": "^27.5.1",
"sequelize-cli": "^6.4.1",
"supertest": "^6.2.3",
"ts-jest": "^27.1.4",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.2"
},
"dependencies": {
"dotenv": "^16.0.0",
"express": "^4.17.3",
"pg": "^8.7.3",
"sequelize": "^6.17.0"
}
}