-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.62 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"private": true,
"name": "sars-angel",
"version": "1.1.0",
"scripts": {
"build": "run-s build:clean build:code",
"build:clean": "rimraf dist",
"build:code": "tsc",
"start": "node dist/entry.js",
"dev": "nodemon src/entry.ts",
"dev:debug": "nodemon --inspect src/entry.ts",
"fmt": "prettier --write '**/*.{js,ts}'",
"fmt:p": "prettier-package-json --write",
"prod": "run-s build && node dist/entry.js",
"test": "jest --no-cache"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts",
"moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json", "node" ]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always"
},
"dependencies": {
"airtable": "^0.10.0",
"bull": "^3.18.0",
"bull-board": "^0.9.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "4.17.1",
"ioredis": "^4.17.3",
"lodash": "^4.17.20",
"messagebird": "^3.5.0",
"postmark": "^2.6.0",
"ts-node": "9.0.0",
"twilio": "^3.49.4",
"winston": "3.3.3"
},
"devDependencies": {
"@types/airtable": "^0.8.1",
"@types/bull": "^3.14.4",
"@types/bull-board": "^0.6.0",
"@types/cors": "^2.8.8",
"@types/express": "4.17.8",
"@types/ioredis": "^4.17.5",
"@types/jest": "26.0.14",
"@types/lodash": "^4.14.161",
"@types/node": "^14.11.8",
"@types/supertest": "2.0.10",
"@types/twilio": "^2.11.0",
"babel": "^6.23.0",
"eslint": "^7.11.0",
"jest": "26.5.2",
"nodemon": "2.0.4",
"npm-run-all": "4.1.5",
"prettier": "2.1.2",
"prettier-eslint": "^11.0.0",
"rimraf": "3.0.2",
"supertest": "5.0.0",
"ts-jest": "26.4.1",
"typescript": "4.0.3"
}
}