-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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": "uno-bot",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"www:watch": "nodemon",
"start": "node --inspect --require ts-node/register www/server.ts",
"serve": "nodemon www/server.ts",
"lint": "tslint --config tslint.json --project tsconfig.json --exclude \"**/*.json\"",
"lint:fix": "tslint --fix --config tslint.json --project tsconfig.json --exclude \"**/*.json\"",
"tsc": "rm -rf dist && tsc"
},
"dependencies": {
"@types/node": "^12.0.0",
"aws-sdk": "^2.452.0",
"aws-serverless-express": "^3.3.6",
"bluebird": "^3.5.4",
"body-parser": "^1.19.0",
"ejs": "^2.6.1",
"express": "^4.16.4",
"lambda-log": "^2.2.0",
"lodash": "^4.17.11",
"morgan": "^1.9.1",
"source-map-support": "^0.5.12"
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-s3-upload": "^1.7.3",
"nodemon": "^1.19.0",
"serverless": "^1.42.1",
"serverless-dotenv-plugin": "^2.1.1",
"serverless-plugin-typescript": "^1.1.7",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5"
}
}