-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 900 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
{
"name": "nodejs_typescript_api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --transpile-only --ignore-watch node_modules src/server.ts",
"typeorm": "ts-node-dev node_modules/typeorm/cli.js",
"test": "set NODE_ENV=test&&jest -i"
},
"dependencies": {
"@types/uuid": "^8.3.4",
"express": "^4.17.2",
"express-async-errors": "^3.1.1",
"handlebars": "^4.7.7",
"nodemailer": "^6.7.2",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"typeorm": "^0.2.41",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.19",
"@types/supertest": "^2.0.11",
"jest": "^27.5.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
}
}