-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "coding-machine-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn index.ts ",
"start": "node dist/index.js",
"build": "npx tsc",
"deploy:prod": "rm -rf /dist && npm run build && serverless deploy"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.23",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-plugin-scripts": "^1.0.2",
"ts-node-dev": "^1.1.8"
},
"dependencies": {
"@aws-sdk/client-sqs": "^3.536.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.2.0",
"helmet": "^5.0.2",
"http-proxy-middleware": "^2.0.4",
"mongoose": "^8.2.2",
"serverless-http": "^3.2.0",
"xss-clean": "^0.1.1"
}
}