-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"postinstall": "node postinstall.js",
"test": "echo \"Error: no test specified\" && exit 1",
"localBuild": "rimraf dist && babel src --out-dir dist --copy-files",
"build": "npm install && rimraf dist && babel src --out-dir dist --copy-files",
"start": "node dist/app.js",
"dev": "nodemon --exec babel-node src/app.mjs",
"rimraf": "./node_modules/rimraf/bin.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@babel/preset-env": "^7.20.2",
"nodemon": "^2.0.20",
"rimraf": "^4.1.2"
},
"dependencies": {
"@google-cloud/storage": "^6.9.3",
"aws-sdk": "^2.1318.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"gitignore": "^0.7.0",
"mongoose": "^6.9.2",
"multer": "^1.4.5-lts.1"
}
}