-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "hypefalcon",
"version": "1.0.0",
"description": "Slack bot to recognize team effort",
"main": "index.js",
"scripts": {
"test:services": "ts-node node_modules/tape/bin/tape --no-only \"./services/**/*.test.ts\"",
"test:api": "ts-node node_modules/tape/bin/tape --no-only \"./!(node_modules)*.test.ts\"",
"test": "npm run test:services && npm run test:api",
"build": "tsc",
"prestart": "npm run build",
"start": "node dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jocrah/hypefalcon.git"
},
"keywords": [
"hype",
"kudo",
"slack"
],
"author": "Joshua Ocrah <ocrahjoshua@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jocrah/hypefalcon/issues"
},
"homepage": "https://github.com/jocrah/hypefalcon#readme",
"dependencies": {
"express": "^4.17.1",
"got": "^11.8.5",
"mongoose": "^6.6.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/got": "^9.6.12",
"@types/nock": "^11.1.0",
"@types/node": "^16.4.4",
"@types/supertest": "^2.0.11",
"@types/tape": "^4.13.2",
"bson-objectid": "^2.0.1",
"dotenv": "^8.2.0",
"faucet": "0.0.3",
"nock": "^13.1.1",
"supertest": "^6.1.3",
"tape": "^5.5.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}