-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 KB
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
{
"name": "alarm-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"license": "MIT",
"author": {
"email": "reda.mekhezzem@gmail.com",
"name": "MEKHEZZEM Reda",
"url": "https://www.linkedin.com/in/reda-mekhezzem/"
},
"scripts": {
"build": "tsc --project ./",
"start:dev": "nodemon src/server.ts",
"start:prod": "node dist/server.js",
"test": "jest"
},
"keywords": [],
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/joi": "^17.2.3",
"@types/knex": "^0.16.1",
"@types/node": "^20.2.5",
"@types/sqlite3": "^3.1.8",
"@types/supertest": "^2.0.12",
"cors": "^2.8.5",
"jest": "^29.5.0",
"joi": "^17.9.2",
"knex": "^2.4.2",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"sqlite3": "^5.1.6",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}