-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 987 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
{
"name": "github-plugin-server",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"bstart": "tsc && node dist/index.js",
"dev": "tsc && nodemon dist/index.js",
"test": "jest --runInBand --detectOpenHandles"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.4",
"express": "^4.18.2",
"mongoose": "^8.3.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.11.19",
"@types/supertest": "^6.0.2",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"superagent": "^8.1.2",
"supertest": "^6.3.4",
"typescript": "^5.3.3"
}
}