-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 KB
/
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
48
{
"name": "goodplays-dashboard-api",
"version": "1.0.0",
"description": "Goodplays Dashboard API Backend",
"main": "dist/express_app.js",
"type": "module",
"engines": {
"node": "20.x"
},
"scripts": {
"start": "node dist/express_app.js",
"server": "tsc && nodemon --inspect dist/express_app.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "tsc && cd client && npm install && npm run build --verbose",
"test": "npm run test --prefix client",
"prod": "set NODE_ENV=production && npm run start",
"delete": "del-cli --force client/node_modules"
},
"author": "Chris Dietsch",
"license": "MIT",
"dependencies": {
"axios": "^1.5.1",
"bcrypt": "^5.1.1",
"common-es": "^1.0.1",
"cors": "^2.8.5",
"del-cli": "^5.1.0",
"dotenv": "^16.3.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mongodb": "^5.6.0",
"node-fetch": "^3.3.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/express-session": "^1.17.9",
"@types/node": "^20.8.3",
"@types/passport": "^1.0.13",
"@types/passport-local": "^1.0.36",
"concurrently": "^8.2.1",
"nodemon": "^2.0.15",
"typescript": "^5.2.2"
}
}