-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 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
49
50
51
52
{
"name": "express-js-starter-ts",
"version": "1.0.0",
"description": "This is a custom made express-js starter with Typescript",
"main": "index.js",
"scripts": {
"start": "npm run build && node build/index.js",
"dev": "npx nodemon",
"build": "rimraf ./build && tsc",
"test": "mocha ./build/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HilaryEmmanuel/Express-Starter-Ts.git"
},
"author": "Emmanuel Hilary",
"license": "ISC",
"bugs": {
"url": "https://github.com/HilaryEmmanuel/Express-Starter-Ts/issues"
},
"homepage": "https://github.com/HilaryEmmanuel/Express-Starter-Ts#readme",
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.5",
"@types/uuid": "^9.0.7",
"chai": "^5.0.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"rimraf": "^5.0.5",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@types/express": "^4.17.21",
"@types/supertest": "^6.0.2",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"nanoid": "^3.3.7",
"uuid": "^9.0.1"
}
}