-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.74 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "ts-express-boilerplate",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "node ./build/server.js",
"build": "npx rimraf ./build && npx tsc",
"dev": "nodemon src/server.ts",
"test": "npx mocha --reporter spec -r ts-node/register src/tests/*.test.ts"
},
"repository": {
"type": "git",
"url": "git@github.com:alvinwilta/ts-express-boilerplate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.0",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.180",
"@types/mocha": "^9.1.0",
"@types/mongodb": "^4.0.7",
"@types/multer": "^1.4.7",
"@types/nodemailer": "^6.4.4",
"@types/pino": "^7.0.5",
"@types/query-string": "^6.3.0",
"@types/supertest": "^2.0.12",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.5.5"
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.2",
"chai": "^4.3.6",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.10",
"dicer": "^0.3.1",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mocha": "^9.2.2",
"mongodb": "^4.4.0",
"mongoose": "^6.2.2",
"multer": "^1.4.4",
"nodemailer": "^6.7.3",
"nodemon": "^3.0.1",
"pdf-lib": "^1.17.1",
"pino": "^7.8.0",
"pino-pretty": "^7.5.3",
"query-string": "^7.1.1",
"supertest": "^6.2.2"
}
}