generated from obetancourthunicah/express-ts-sw-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "express-ts-sw-boilerplate",
"version": "1.0.0",
"description": "Express Typescript Boilerplate for SW ICC course",
"main": "index.ts",
"scripts": {
"start": "ts-node -r tsconfig-paths/register -r dotenv/config src/index",
"dev": "nodemon --config restart.json",
"test": "jest",
"build": "tsc"
},
"author": "Orlando J Betancourth [email protected]",
"license": "ISC",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/express": "^4.17.14",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"jest": "^29.0.3",
"jest-html-reporter": "^3.7.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"@types/jsonwebtoken": "^8.5.9",
"typescript": "^4.8.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongodb": "^4.10.0",
"sqlite": "^4.1.2",
"sqlite3": "^5.1.1",
"winston": "^3.8.2"
}
}