forked from jvvillanueva9104/CI-CD-Backend-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 981 Bytes
/
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
42
43
44
45
46
47
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "./src/App.ts",
"scripts": {
"test": "mocha --exit",
"dev": "tsnd ./src/App.ts",
"start": "tsnd /Users/helenalee/Desktop/Mission1/Backend/src/App.ts",
"build": "tsc"
},
"mocha": {
"require": [
"ts-node/register"
],
"recursive": true,
"extension": [
"ts",
"js",
"tsx"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.8",
"@types/supertest": "^2.0.12",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mysql2": "^3.6.0"
}
}