-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 937 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": "35_mm_server",
"version": "0.0.1",
"description": "backend for 35mm app",
"main": "app.js",
"scripts": {
"start": "nodemon --exec ts-node app.ts",
"client": "npm start --prefix client",
"dev": "concurrently --kill-others-on-fail \"npm start\" \"npm run client\" "
},
"author": "NekkiNeks",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/node": "^18.0.0",
"body-parser": "^1.20.0",
"concurrently": "^7.2.2",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"global": "^4.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.4",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.19",
"ts-node": "^10.8.2"
},
"devDependencies": {
"typescript": "^4.7.4"
}
}