This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "dmcd",
"version": "1.0.0",
"description": "Dockerize My Continuous Deployment",
"main": "index.js",
"scripts": {
"build": "npm install && tsc",
"start": "npm i && node ./build/Server.js",
"start-nobuild": "node ./build/Server.js",
"nodemon": "nodemon ./build/Server",
"create-admin": "node ./build/Setup/CreateAdmin",
"setup": "npm run build && node ./build/Setup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tolfix/dmcd.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tolfix/dmcd/issues"
},
"homepage": "https://github.com/Tolfix/dmcd#readme",
"dependencies": {
"@types/node-sass-middleware": "0.0.32",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.0.2",
"colors": "^1.4.0",
"command-exists": "^1.2.9",
"common-tags": "^1.8.0",
"connect-flash": "^0.1.1",
"cors": "^2.8.5",
"date-and-time": "^1.0.1",
"docker-compose": "^0.23.12",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.1",
"express-session": "^1.17.2",
"method-override": "^3.0.0",
"mongoose": "^5.13.0",
"node-sass-middleware": "^0.11.0",
"nodemailer": "^6.6.3",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"prompt": "^1.1.0",
"socket.io": "^4.1.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/command-exists": "^1.2.0",
"@types/common-tags": "^1.8.0",
"@types/connect-flash": "0.0.36",
"@types/cors": "^2.8.10",
"@types/date-and-time": "^0.13.0",
"@types/express": "^4.17.12",
"@types/express-ejs-layouts": "^2.3.2",
"@types/express-session": "^1.17.3",
"@types/method-override": "0.0.31",
"@types/node": "^15.12.5",
"@types/nodemailer": "^6.4.4",
"@types/passport": "^1.0.6",
"@types/passport-local": "^1.0.33",
"@types/prompt": "^1.1.0"
}
}