-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "cacher-app-server",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"module": "commonjs",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js --jsx",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AR-T-Augmented-Reality-Technologies/cacher-app-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AR-T-Augmented-Reality-Technologies/cacher-app-server/issues"
},
"homepage": "https://github.com/AR-T-Augmented-Reality-Technologies/cacher-app-server#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.293.0",
"@prisma/client": "^4.11.0",
"aws-sdk": "^2.1336.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"sharp": "^0.31.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.18",
"@types/sharp": "^0.31.1",
"concurrently": "^7.6.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.20",
"prisma": "^4.11.0",
"typescript": "^4.9.4"
}
}