-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 2.95 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "riverla",
"version": "1.0.0",
"description": "An application that automates volunteer matching for RiverLA",
"main": "index.js",
"engines": {
"node": "10.16"
},
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts test/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts test/**/*.ts",
"postinstall": "npm run build",
"start": "node ./dist/index.js",
"dev": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "tsc && ava",
"test-integration": "node test_integration/integrationTest.js --experimental-modules",
"test-coverage": "tsc && nyc ava",
"validate-coverage": "nyc --check-coverage npm test",
"watch-node": "nodemon -r dotenv/config dist/index.js",
"watch-ts": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ctcusc/RiverLA.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ctcusc/RiverLA/issues"
},
"homepage": "https://github.com/ctcusc/RiverLA#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/body-parser": "^1.17.1",
"@types/express": "^4.17.1",
"@types/helmet": "0.0.44",
"@types/morgan": "^1.7.37",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"ava": "^2.4.0",
"ava-ts": "^0.25.2",
"concurrently": "^4.1.2",
"dotenv": "^8.2.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"lint-staged": "^9.4.0",
"nock": "^11.7.0",
"nodemon": "^1.19.2",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"sinon": "^7.5.0",
"supertest": "^4.0.2",
"ts-node": "^8.4.1",
"typedoc": "^0.16.9",
"typescript": "^3.6.3"
},
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"@types/airtable": "^0.5.6",
"@types/got": "^9.6.10",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^7.5.0",
"airtable": "^0.7.2",
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"express": "^4.17.1",
"got": "^11.0.1",
"helmet": "^3.21.1",
"morgan": "^1.9.1",
"ngrok": "^3.2.5",
"phone-formatter": "0.0.2",
"proxyquire": "^2.1.3",
"readline": "^1.3.0",
"sinon": "^7.5.0",
"superagent": "^5.1.2"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"dotenv/config",
"ts-node/register"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"lint-staged": {
"**/*.ts": "eslint"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"check-coverage": true,
"branches": 95,
"lines": 95,
"functions": 95,
"statements": 95,
"include": [
"src/**/*.ts"
]
}
}