forked from BlueSense-by-ByteTeam/bluesense-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.34 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
53
54
{
"name": "bluesense-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"postinstall": "prisma generate",
"start": "node index.js",
"dev": "nodemon src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"testEnvironment": "node"
},
"author": "Roni Ragil Iman Khoirul",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.3.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"date-fns": "^3.6.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"firebase-admin": "^12.0.0",
"firebase-functions": "^4.6.0",
"imagekit": "^4.1.4",
"joi": "^17.10.1",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"qrcode": "^1.5.3"
},
"devDependencies": {
"@babel/plugin-syntax-import-attributes": "^7.22.5",
"@babel/preset-env": "^7.22.10",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/supertest": "^2.0.12",
"babel-jest": "^29.6.2",
"babel-plugin-inline-json-import": "^0.3.2",
"jest": "^29.6.2",
"nodemon": "^3.0.2",
"prisma": "^5.2.0",
"supertest": "^6.3.3"
}
}