forked from bootleg224/resy-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.14 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": "resy-api",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"cnode": "node --no-warnings --experimental-modules --es-module-specifier-resolution=node --loader ts-node/esm ",
"dev": "yarn cnode ./src/index.ts",
"monitor": "yarn cnode ./src/monitor.ts"
},
"dependencies": {
"axios": "^0.27.2",
"dayjs": "^1.11.3",
"lowdb": "^3.0.0",
"moment": "^2.29.3",
"node-schedule": "^2.1.0",
"ts-node": "^10.8.1",
"twilio": "^3.77.2",
"typescript": "^4.7.3",
"uuid": "^8.3.2",
"winston": "^3.7.2"
},
"devDependencies": {
"@types/moment": "^2.13.0",
"@types/node": "^17.0.42",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/eslint-plugin-tslint": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.6.2"
}
}