-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.54 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
58
59
60
61
62
63
{
"name": "campuscore-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start": "npx ts-node src/app.ts",
"build": "tsc",
"seed": "ts-node src/utils/seedData.ts"
},
"keywords": [
"Admin",
"Teacher",
"Student",
"Enrollment",
"Academy",
"Subject",
"Grades"
],
"author": "Jason A. Watson",
"license": "CITC LLC",
"dependencies": {
"axios": "^1.10.0",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.0.3",
"@types/supertest": "^6.0.3",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.4",
"supertest": "^7.1.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
},
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/jxwatson251/CampusCore-API.git"
},
"type": "commonjs",
"bugs": {
"url": "https://github.com/jxwatson251/CampusCore-API/issues"
},
"homepage": "https://github.com/jxwatson251/CampusCore-API#readme"
}