This repository was archived by the owner on Nov 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.14 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
68
69
70
71
72
{
"name": "nasgar-web",
"version": "1.0.0",
"description": "",
"main": "bin/www",
"bin": {
"nasgar-web": "bin/www"
},
"type": "commonjs",
"module": "nasgar-web",
"typings": "@types",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"start": "node bin/www",
"start_forever": "( SET NODE_ENV=production || NODE_ENV=production ) && forever start -a -c \"node --no-warnings\" --uid \"web\" bin/www",
"dev": "node ./node_modules/nodemon/bin/nodemon.js --no-warnings bin/www",
"dev:ts": "tsc -p tsconfig.json -w",
"dev:ts-public": "tsc -p tsconfig-public.json -w",
"ts": "yarn run dev:ts",
"tsp": "yarn run dev:ts-public",
"build": "yarn run build:ts && yarn run build:ts-public && yarn run build:less",
"build:ts": "tsc -p tsconfig.json",
"build:ts-public": "tsc -p tsconfig-public.json",
"build:less": "node ./compiler/less.js"
},
"keywords": [],
"author": "Nasgar Network",
"license": "ISC",
"dependencies": {
"cloudinary": "^1.27.1",
"cookie-parser": "^1.4.5",
"crypto": "^1.0.1",
"ejs": "^3.1.7",
"express": "^4.17.3",
"express-fileupload": "^1.2.1",
"express-session": "^1.17.2",
"hjson": "^3.2.2",
"html-minifier": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"node-fetch": "^3.1.1",
"nodemailer": "^6.6.5",
"paypal-rest-sdk": "^1.8.1",
"rcon": "git+https://github.com/tehbeard/node-rcon.git",
"redis": "^4.0.0",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.1.7",
"@types/express-session": "^1.17.4",
"@types/jsonwebtoken": "^8.5.5",
"@types/mysql": "^2.15.19",
"@types/nodemailer": "^6.4.4",
"@types/paypal-rest-sdk": "^1.7.6",
"@types/showdown": "^1.9.4",
"@types/simplemde": "^1.11.8",
"@types/socket.io": "^3.0.2",
"@types/socket.io-client": "^3.0.0",
"@types/uuid": "^8.3.1",
"@types/winston": "^2.4.4",
"dotenv": "^10.0.0",
"less": "^4.1.2",
"less-plugin-clean-css": "^1.5.1",
"nodemon": "^2.0.7",
"typescript": "^4.4.4"
}
}