-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 KB
/
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
38
39
40
{
"name": "mailauth",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --exit --recursive --require ts-node/register src/test/user.test.ts",
"test:prod": "mocha --exit --recursive dest/test/user.test.js",
"start": "tsc && node dest/index.js",
"build": "tsc",
"test:coverage": "tsc && nyc mocha --exit --recursive dest/test/user.test.js",
"makemigration": "knex migrate:make --knexfile ./src/knexfile.ts",
"migrate": "tsc && knex migrate:latest --knexfile ./dest/knexfile.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"bookshelf": "^1.2.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"joi": "^17.7.0",
"nodemailer": "^6.8.0",
"pg": "^8.8.0"
},
"devDependencies": {
"@types/chai-http": "^4.2.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.18",
"@types/nodemailer": "^6.4.7",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node-register": "^1.0.0",
"typescript": "^4.9.4"
}
}