-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.1 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
44
{
"name": "identify-bitespeed",
"version": "1.0.0",
"description": "for assignemnt",
"main": "app.js",
"scripts": {
"build": "rimraf build && tsc",
"watch": "nodemon --exec ts-node app.ts",
"migration:make": "knex migrate:make",
"migrate": "knex migrate:latest",
"start": "node ./build/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mr-loop-1/customer-identify.git"
},
"author": "Abdul Samad",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/mr-loop-1/customer-identify#readme",
"engines": {
"node": ">=18.12.0",
"npm": ">=8.19.2"
},
"dependencies": {
"body-parser": "^1.20.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"knex": "^3.1.0",
"mysql2": "^3.9.7",
"objection": "^3.1.4",
"path": "^0.12.7"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.30",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}