-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 835 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
{
"name": "next-bread-dashboard-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/index.js",
"dev": "nodemon ./src/index.ts",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/passport": "^1.0.8",
"@types/passport-discord": "^0.1.5",
"dotenv": "^16.0.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"dependencies": {
"axios": "^0.27.2",
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-session": "^1.17.3",
"mongoose": "^6.3.6",
"passport": "^0.6.0",
"passport-discord": "^0.1.4"
}
}