-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 822 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 822 Bytes
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": "aff",
"version": "2.0.0",
"description": "Assistant for Freelancer",
"main": "index.js",
"scripts": {
"server": "nodemon ./index.js",
"client": "npm start --prefix client",
"admin": "npm start --prefix admin",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "Jiners Enoheart",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^5.0.0",
"dotenv": "^8.2.0",
"express": "^5.0.0-alpha.1",
"formidable": "^1.2.1",
"fs": "0.0.2",
"http": "0.0.0",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.3",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"pg": "^8.1.0",
"socket.io": "^2.3.0"
},
"nodemonConfig": {
"ignore": [
"client/*"
]
}
}