-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.04 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
{
"name": "hackclub-info",
"version": "0.2.0",
"description": "Public-facing API for getting info from Hack Club",
"main": "index.js",
"scripts": {
"dev": "PORT=5000 bun --watch src/index.js",
"start": "bun src/index.js",
"fmt": "prettier \"{tests/**,src/**,}/*.js\" --write",
"fmtCheck": "prettier \"{tests/**,src/**,}/*.js\" --check",
"test": "NODE_ENV=test bun test",
"production-test": "NODE_ENV=test bun test --test-name-pattern production",
"basic-test": "NODE_ENV=test bun test --test-name-pattern basic"
},
"keywords": [],
"author": "Max Wofford <max@maxwofford.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hackclub/api2.git"
},
"dependencies": {
"@bugsnag/js": "^6.5.0",
"@bugsnag/plugin-express": "^6.5.0",
"airtable": "^0.12.2",
"cors": "^2.8.5",
"express": "^4.17.3",
"friendly-words": "^1.1.10",
"js-yaml": "^4.1.0",
"node-cache": "^5.1.2"
},
"devDependencies": {
"prettier": "^2.0.5",
"supertest": "^4.0.2"
}
}