-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.43 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
41
42
43
44
{
"name": "node-jwt",
"version": "1.0.0",
"main": "server.js",
"license": "MIT",
"private": true,
"author": "Toufiq (https://twitter.com/burningraven06)",
"description" : "Express TypeScript API Authentication with MongoDB, JWT & Unit Testing with Mocha / Chai",
"keywords" : [ "express","typescript","jwt","bcrypt","unit-testing","typescript-tests","mocha","chai","mongodb","node-typescript "],
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/jsonwebtoken": "^8.3.0",
"@types/mongoose": "^5.3.1",
"@types/redis": "^2.8.8",
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.13",
"redis": "^2.8.0"
},
"scripts": {
"start": "node dist/server.js",
"start-app": "nodemon dist/server.js",
"build": "tsc",
"test": "mocha -r ts-node/register 'src/tests/**/*.spec.ts'",
"watch-ts": "tsc -w",
"watch-js": "nodemon dist/server.js",
"watch-test-js": "mocha --watch dist/tests/**/*spec.js",
"watch-test-ts": "mocha -r ts-node/register --watch 'src/tests/**/*.spec.ts' --watch-extensions ts"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-http": "^3.0.5",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.6"
}
}