-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.48 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
45
46
47
48
49
50
51
52
{
"name": "typescript-node-admin",
"version": "1.0.0",
"description": "NodeJs server side RESTful API using typescript...",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.ts",
"roles:seed": "ts-node src/seeder/role.seeder.ts",
"products:seed": "ts-node src/seeder/product.seeder.ts",
"orders:seed": "ts-node src/seeder/order.seeder.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abhishek-kumar2/typescript-node-admin.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/abhishek-kumar2/typescript-node-admin/issues"
},
"homepage": "https://github.com/abhishek-kumar2/typescript-node-admin#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.9",
"@types/json2csv": "^5.0.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.8",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-validation": "^3.0.8",
"faker": "^5.5.3",
"json2csv": "^5.0.6",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.4",
"mysql2": "^2.3.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.41"
}
}