-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "exocial",
"version": "0.0.1",
"description": "",
"main": "config.js",
"scripts": {
"server": "nodemon server.js --ignore 'client/' ",
"client": "npm run dev --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "node server.js",
"build": "npm install --prefix client && npm run build --prefix client && npm i"
},
"_moduleAliases": {
"@config": "src/config",
"@auth": "src/auth",
"@users": "src/users",
"@posts": "src/posts"
},
"keywords": [],
"author": "YESSINE",
"license": "ISC",
"dependencies": {
"@headlessui/vue": "^1.7.9",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"express": "^4.17.3",
"express-fileupload": "^1.2.1",
"express-rate-limit": "^5.5.1",
"helmet": "^4.6.0",
"imgur": "^2.1.3",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongoose": "^6.1.2",
"morgan": "^1.10.0",
"socket.io": "^4.4.1",
"vue": "^3.2.31"
},
"devDependencies": {
"concurrently": "^6.5.0",
"dotenv": "^10.0.0",
"kill-port": "^1.6.1",
"nodemon": "^2.0.15"
}
}