-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 950 Bytes
/
package.json
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
{
"name": "nlw-4-node-js",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --transpile-only --ignore-watch node_modules src/server.ts",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"test": "set NODE_ENV=test&&jest -i"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"handlebars": "^4.7.7",
"nodemailer": "^6.4.18",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"typeorm": "^0.2.31",
"uuid": "^8.3.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/nodemailer": "^6.4.0",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"jest": "^26.6.3",
"supertest": "^6.1.3",
"ts-jest": "^26.5.2",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.5"
}
}