-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "ps5-bot",
"version": "1.0.0",
"description": "ps5 alerting",
"main": "server.js",
"scripts": {
"test": "test",
"lint": "yarn run eslint --fix . --ext .ts",
"start": "nodemon src/server.ts",
"build": "tsc --project ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canscaw28/ps5-bot.git"
},
"author": "Craig Weiss",
"license": "MIT",
"bugs": {
"url": "https://github.com/canscaw28/ps5-bot/issues"
},
"homepage": "https://github.com/canscaw28/ps5-bot#readme",
"dependencies": {
"bluebird": "^3.7.2",
"dotenv": "^10.0.0",
"envalid": "^7.1.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"node-cron": "^3.0.0",
"puppeteer": "^10.1.0",
"twilio": "^3.65.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bluebird": "^3.5.35",
"@types/bluebird-global": "^3.5.12",
"@types/express": "^4.17.12",
"@types/lodash": "^4.14.170",
"@types/node": "^16.0.0",
"@types/node-cron": "^2.0.3",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"nodemon": "^2.0.9",
"prettier": "^2.3.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
}
}