-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "hackclub-info",
"version": "0.2.0",
"description": "Public-facing API for getting info from Hack Club",
"main": "index.js",
"scripts": {
"dev": "PORT=5000 nodemon --exec babel-node src/index.js",
"start": "node build/index.js",
"build": "babel src -d build --copy-files",
"heroku-postbuild": "npm run build",
"fmt": "prettier \"{tests/**,src/**,}/*.js\" --write",
"fmtCheck": "prettier \"{tests/**,src/**,}/*.js\" --check",
"test": "jest",
"production-test": "jest -t='production'",
"basic-test": "jest -t='basic' --detectOpenHandles"
},
"keywords": [],
"author": "Max Wofford <max@maxwofford.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hackclub/api2.git"
},
"dependencies": {
"@babel/runtime": "^7.7.7",
"@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",
"node-fetch": "^2"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.6.3",
"dotenv": "^8.1.0",
"jest": "^24.9.0",
"nodemon": "^1.19.3",
"prettier": "^2.0.5",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}