-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "be-intern-assignment",
"version": "1.0.0",
"description": "Virtual Internships Backend Intern Assignment",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"typeorm": "typeorm-ts-node-commonjs",
"migration:generate": "npm run typeorm migration:generate -- -d src/data-source.ts",
"migration:run": "npm run typeorm migration:run -- -d src/data-source.ts",
"migration:revert": "npm run typeorm migration:revert -- -d src/data-source.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.21",
"@types/joi": "^17.2.2",
"dotenv": "^16.5.0",
"express": "^4.18.2",
"joi": "^17.13.3",
"reflect-metadata": "^0.2.2",
"sqlite3": "^5.1.7",
"ts-node": "^10.9.2",
"typeorm": "^0.3.22",
"typescript": "^5.8.3"
},
"devDependencies": {
"@types/node": "^22.14.1",
"lint-staged": "^15.2.0",
"nodemon": "^3.1.9",
"prettier": "^3.2.0"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write"
]
}
}