forked from lukablaskovic/macroquiet-express-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "stranded-away-backend",
"version": "1.0.0",
"description": "Node.js/Express.js/MongoDB Back-end aplikacije za MacroQuiet Game Development - 2 people Indie Game Development Studio.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "nodemon --exec babel-node src/index.js",
"build": "babel src -d build",
"start": "node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukablaskovic/stranded-away-backend.git"
},
"author": "lukablaskovic",
"license": "ISC",
"bugs": {
"url": "https://github.com/lukablaskovic/stranded-away-backend/issues"
},
"homepage": "https://github.com/lukablaskovic/stranded-away-backend#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.282.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"mongodb": "^4.8.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.7.8",
"passport": "^0.6.0",
"passport-google-oauth": "^2.0.0",
"sharp": "^0.32.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/node": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/runtime": "^7.18.9",
"babel-core": "^7.0.0-bridge.0",
"nodemon": "^2.0.21"
}
}