forked from sleepTrackerApp/sleepTrackerApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.31 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.31 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "alive",
"version": "1.0.0",
"description": "Alive Sleep Tracking App",
"keywords": [
"Sleep",
"Tracking",
"Medical",
"Private",
"Auth0",
"MongoDB",
"Express",
"Materialize",
"Socket.IO",
"Contentful"
],
"homepage": "https://github.com/akashjaura16/sleepTrackerApp#readme",
"bugs": {
"url": "https://github.com/akashjaura16/sleepTrackerApp/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akashjaura16/sleepTrackerApp.git"
},
"license": "ISC",
"author": "Team 33",
"contributors": [
{
"name": "Andrej Kudriavcev",
"studentID": "s224939307"
},
{
"name": "Akashdeep Singh",
"studentID": "s224911605"
},
{
"name": "Mi Vo",
"studentID": "s224505179"
},
{
"name": "Naren Madabooshi Onamalai",
"studentID": "s225281581"
},
{
"name": "Winston Dang",
"studentID": "s222038631"
}
],
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "mocha \"tests/**/*.test.js\" --recursive --reporter spec",
"test:unit": "mocha \"tests/unit/**/*.test.js\" --recursive --reporter spec",
"test:integration": "mocha \"tests/integration/**/*.test.js\" --recursive --reporter spec",
"test:smoke": "mocha \"tests/smoke/**/*.test.js\" --recursive --reporter spec",
"test:e2e": "playwright test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ."
},
"dependencies": {
"@contentful/rich-text-html-renderer": "^17.1.6",
"@json2csv/plainjs": "^7.0.6",
"contentful": "^11.10.1",
"dotenv": "^17.2.3",
"ejs": "^3.1.10",
"express": "^4.18.2",
"express-openid-connect": "^2.19.3",
"mongoose": "^9.0.2",
"node-cron": "^3.0.3",
"openai": "^6.16.0",
"socket.io": "^4.7.2"
},
"overrides": {
"qs": "6.14.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.58.0",
"chai": "^4.4.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.1.0",
"mocha": "^11.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.8.1",
"proxyquire": "^2.1.3",
"sinon": "^21.0.1",
"socket.io-client": "^4.8.3",
"supertest": "^7.0.0"
}
}