-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.54 KB
/
package.json
File metadata and controls
47 lines (47 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
{
"name": "lamp",
"version": "1.0.0",
"description": "SE-498-01 Software Engineering Capstone; LAMP ## 1. contributors; ### Daisy Fernandez-Reyes'25 email; fernandezreyes@chapman.edu git; [daisyb3ll]() ### Rory Sullivan'25 email; annbrown@chapman.edu git;[rosullivan2]() ### Sarah Yoon'25 email; saryoon@chapman.edu git; sarah-yoon",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest --coverage",
"start": "node server.js",
"clean": "npx rimraf node_modules coverage",
"sonar": "sonar-scanner -Dsonar.projectKey=daisyb3ll_LAMP -Dsonar.organization=daisyb3ll -Dsonar.host.url=https://sonarcloud.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rosullivan2/LAMP.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rosullivan2/LAMP/issues"
},
"homepage": "https://github.com/rosullivan2/LAMP#readme",
"dependencies": {
"@faker-js/faker": "^9.8.0",
"axios": "^1.9.0",
"bcrypt": "^5.1.1",
"connect-mongo": "^5.1.0",
"dotenv": "^16.5.0",
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-session": "^1.18.1",
"mongodb": "^6.16.0",
"mongoose": "^8.14.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"jest": {
"testEnvironment": "node",
"forceExit": true,
"detectOpenHandles": true
},
"devDependencies": {
"cross-env": "^7.0.3",
"mongodb-memory-server-core": "^10.1.4",
"supertest": "^7.1.1"
}
}