-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 839 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 839 Bytes
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
{
"name": "iterate-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prod-start": "node ./dist/index.js",
"start": "nodemon --exec babel-node ./src/index.js",
"build": "npm run clean && babel ./src --out-dir dist",
"clean": "rm -rf ./dist && mkdir dist"
},
"author": "",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^2.19.2",
"aws-sdk": "^2.855.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"graphql": "^15.4.0",
"mongoose": "^5.11.13",
"multer": "^1.4.2",
"multer-s3": "^2.9.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"nodemon": "^2.0.7"
}
}