forked from aweil13/Disarray
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.01 KB
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
{
"name": "disarray",
"version": "2.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "20.14.0",
"npm": "10.7.0"
},
"scripts": {
"start": "node app.js",
"server": "nodemon app.js",
"frontend-install": "npm install --prefix frontend",
"frontend": "npm run dev --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run frontend\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/aweil13/Disarray.git"
},
"author": "",
"bugs": {
"url": "https://github.com/aweil13/Disarray/issues"
},
"homepage": "https://github.com/aweil13/Disarray#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.1",
"n-readlines": "^1.0.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"socket.io": "^4.7.5",
"validator": "^13.12.0"
},
"devDependencies": {
"concurrently": "^6.0.0",
"nodemon": "^3.1.3"
}
}