-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.69 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "freerooms-backend",
"version": "1.0.0",
"description": "Freerooms backend",
"main": "dist/index.js",
"scripts": {
"start": "nodemon src/index.ts",
"dev": "NODE_ENV=development npm start",
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"lint": "prettier --check \"**/*.ts\" && cross-env ESLINT_USE_FLAT_CONFIG=false eslint .",
"lint:fix": "prettier --write \"**/*.ts\" && cross-env ESLINT_USE_FLAT_CONFIG=false eslint . --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devsoc-unsw/Freerooms.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/devsoc-unsw/Freerooms/issues"
},
"homepage": "https://github.com/devsoc-unsw/Freerooms#readme",
"dependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"axios": "^1.19.0",
"cheerio": "^1.2.0",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"dotenv": "^17.4.1",
"express": "^5.2.1",
"graphql": "^17.0.0",
"graphql-request": "^6.1.0",
"mongodb": "^7.1.1"
},
"devDependencies": {
"@types/cors": "2.8.19",
"@types/express": "5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"jest": "^30.0.0",
"nodemon": "^3.0.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "10.9.2",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.3"
}
}