-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1012 Bytes
/
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
{
"name": "trailchecker",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"clean": "rm -rf dist",
"build": "npm run clean && tsc && rsync -a client dist --exclude node_modules",
"check": "node dist/checker.js"
},
"keywords": [],
"author": "Gary Bettencourt",
"license": "MIT",
"dependencies": {
"dotenv": "^16.0.0",
"express": "^4.17.1",
"express-validator": "^6.3.1",
"express-winston": "^4.0.2",
"lowdb": "^3.0.0",
"node-fetch": "3.2.10",
"node-html-parser": "6.1.0",
"node-schedule": "^2.1.0",
"nodemailer": "^6.4.2",
"string-template": "^1.0.0",
"twilio": "^3.71.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/node": "^17.0.0",
"typescript": "^4.1.2"
},
"prettier": {
"printWidth": 140,
"tabWidth": 4,
"useTabs": true,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"bracketSameLine": true,
"arrowParens": "always"
}
}