-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.28 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.28 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
{
"name": "challenge-fullstack-Ambulnz",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:Pedro26fer/challenge-fullstack-Ambulnz.git",
"author": "Pedro26fer <p2698fernandes@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --ignore-watch node_modules src/server.ts",
"typeorm": "typeorm-ts-node-commonjs",
"build": "rm -rf ./dist && tsc",
"start": "node ./dist/index.js",
"migration:generate": "yarn typeorm migration:generate ./src/migrations/initialMigration -d ./src/data-source.ts",
"migration:run": "yarn typeorm migration:run -d ./src/data-source.ts",
"test": "cross-env NODE_ENV=test jest"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.9.1",
"typeorm": "^0.3.17",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/express": "^4.17.20",
"@types/jest": "^29.5.8",
"@types/node": "^20.8.9",
"@types/supertest": "^2.0.16",
"@types/uuid": "^9.0.6",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"sqlite3": "^5.1.6",
"sucrase": "^3.34.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}