-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "timesheet-management-server",
"description": "A proper, fully built API for managing users and work session clock in times.",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node .",
"develop": "npx nodemon .",
"test": "jest",
"manual-tests": "jest --forceExit --testPathIgnorePatterns='\\.ignored' --testPathPattern='src/manual-tests/.*.test.js'",
"ci-tests": "jest --forceExit --detectOpenHandles --seed=-103702426 --showSeed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/malee31/TimesheetManagementServer.git"
},
"author": "Marvin Lee",
"license": "ISC",
"bugs": {
"url": "https://github.com/malee31/TimesheetManagementServer/issues"
},
"homepage": "https://github.com/malee31/TimesheetManagementServer#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"mysql2": "^3.11.5",
"sequelize": "^6.37.5",
"sqlite3": "^5.1.7",
"uuid": "^11.0.3"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"nodemon": "^3.1.7",
"supertest": "^7.0.0"
}
}