-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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
45
46
47
48
{
"name": "conduit_app-nodejs-api",
"version": "1.0.0",
"description": "Medium.com backend clone",
"main": "src/index.ts",
"scripts": {
"test": "jest --color --coverage --setupFiles dotenv/config",
"start": "npm run compile && node dist/index.js",
"compile": "npm run compile:ts",
"compile:ts": "tsc -t es5 --outDir ./dist --module commonjs --downlevelIteration ./src/index.ts"
},
"author": "Luckny Schnider Simélus",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"crypto-random-string": "^5.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-jwt": "^7.7.7",
"http-status-codes": "^2.2.0",
"jest-runner": "^29.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.7.2",
"mongoose-unique-validator": "^3.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.3.3",
"@types/express": "^4.17.14",
"@types/express-session": "^1.17.5",
"@types/jest": "^29.1.2",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^18.8.3",
"@types/slug": "^5.0.3",
"@types/supertest": "^2.0.12",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"jest": "^29.3.1",
"jest-extended": "^3.1.0",
"slug": "^8.2.2",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}