-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 728 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 728 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
{
"name": "api-node-solid-principles",
"version": "1.0.0",
"main": "dist/server.js",
"license": "MIT",
"scripts": {
"start": "tsnd --transpile-only --respawn --ignore-watch node_modules src/server.ts",
"migrate": "ts-node ./node_modules/typeorm/cli.js migration:run"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"mysql2": "^2.2.5",
"nodemailer": "^6.4.10",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.34",
"uuidv4": "^6.2.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.7",
"@types/node": "^15.12.4",
"@types/nodemailer": "^6.4.0",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "^3.9.7"
}
}