-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 944 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 944 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
36
37
38
39
40
41
42
43
44
{
"name": "utahgolfcoursesapi",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"start": "node app.js",
"dev": "nodemon app.js"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[tj]s?(x)"
],
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"mysql": "^2.18.1"
},
"devDependencies": {
"chai": "^5.1.0",
"chai-http": "^4.4.0",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"mocha": "^10.4.0",
"mysql2": "^3.9.7",
"nodemon": "^3.1.0",
"supertest": "^6.3.4"
}
}