-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 890 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 890 Bytes
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
{
"name": "sce-linkedin",
"version": "1.0.0",
"description": "Club's internal alumni directory",
"main": "dist/server.js",
"scripts": {
"start": "node dist/server.js",
"dev": "ts-node api/server.ts",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SCE-Development/sce-linkedin.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/SCE-Development/sce-linkedin/issues"
},
"homepage": "https://github.com/SCE-Development/sce-linkedin#readme",
"dependencies": {
"express": "^5.2.1",
"mongoose": "^9.3.1"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.5.0",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
}
}