-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.4 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
54
55
{
"name": "tickets",
"version": "0.0.1",
"description": "FleetWatcher material ticket aggregator and automated messenger",
"author": "Bill Kerr",
"license": "MIT",
"scripts": {
"dev": "nodemon --legacy-watch --exec ts-node --files src/index.ts",
"test": "set NODE_ENV=test && jest --watchAll --no-cache",
"start": "node 'dist/index.js'",
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"prebuild": "npm run clean"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./test/setup.ts"
],
"testTimeout": 30000
},
"dependencies": {
"aws-sdk": "^2.789.0",
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cron": "^1.8.2",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.2.0",
"nodemailer": "^6.4.15",
"pdf-lib": "^1.11.2",
"pdf-parse": "^1.1.1",
"pg": "^8.4.2",
"puppeteer": "^5.4.1",
"typeorm": "^0.2.29"
},
"devDependencies": {
"@types/cors": "^2.8.8",
"@types/cron": "^1.7.2",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.15",
"@types/nodemailer": "^6.4.0",
"@types/pdf-parse": "^1.1.0",
"@types/puppeteer": "^5.4.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"sqlite3": "^5.0.0",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}