-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1001 Bytes
/
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
{
"name": "hackathon-portal",
"version": "0.1.0",
"description": "REST API for ACM at UCSD's hackathon portal.",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "nodemon index.ts",
"test": "jest --config jest.config.json --runInBand",
"release": "node build/index.js",
"lint": "eslint ./ --ext .ts",
"lint:fix": "eslint ./ --ext .ts --fix"
},
"repository": "https://github.com/acmucsd/hackathon-portal.git",
"author": "Eric Chang <[email protected]>",
"dependencies": {
"dotenv": "^16.4.5",
"firebase": "^11.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3"
}
}