-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.29 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
47
48
49
50
51
52
53
{
"name": "nexturday_backend",
"version": "1.0.0",
"description": "Rest API using Node.js, TypeScript, Express",
"main": "server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"dev": "nodemon --files app.ts",
"start": "ts-node --files app.ts",
"serve": "node build/app.js",
"format": "prettier --write \"src/**/*.{ts,js}\" \"*.ts\""
},
"keywords": [
"express",
"typescript",
"rest",
"api",
"restapi",
"node",
"nodejs",
"crud"
],
"author": "mrflyn",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.16.1",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"prisma": "^5.18.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@prisma/client": "^5.18.0",
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"firebase-admin": "^12.3.1",
"html-table-to-json": "^1.0.0",
"jsonwebtoken": "^9.0.2",
"node-html-parser": "^6.1.13",
"reflect-metadata": "^0.2.2",
"xlsx": "^0.18.5"
}
}