forked from casperiv0/snaily-cadv3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.29 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "snaily-cadv3",
"version": "2.1.16",
"description": "An open source Computer Aided Dispatch (CAD) for FiveM, this is a web based integration for communities who love police roleplaying and dispatching. ",
"scripts": {
"start": "npm run translation:generate && npm run build && cross-env NODE_ENV=production node dist/src/server.js",
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"auto-install": "node ./scripts/install.js",
"docker-start": "npm run translation:generate && npm run build && cross-env NODE_ENV=production node dist/src/server.js",
"lint": "eslint . --ext .ts,.js,.tsx,.jsx",
"lint:fix": "eslint . --fix --ext .ts,.js,.tsx,.jsx",
"translation:generate": "node scripts/generate-lang.js",
"test-tsc": "tsc --noEmit && tsc --p tsconfig.server.json --noEmit",
"format:quick": "pretty-quick --staged --pattern \"**/*.{js,jsx,ts,tsx,md,css,json}\"",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,css,json}\" ",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dev-CasperTheGhost/snaily-cadv3.git"
},
"author": {
"name": "Dev-CasperTheGhost",
"url": "https://caspertheghost.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Dev-CasperTheGhost/snaily-cadv3/issues"
},
"homepage": "https://github.com/Dev-CasperTheGhost/snaily-cadv3#readme",
"dependencies": {
"@casper124578/mysql.ts": "^1.0.1",
"@casper124578/useful": "^1.4.1",
"axios": "^0.21.4",
"bcryptjs": "^2.4.3",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.3",
"date-fns": "^2.24.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"jquery": "^3.6.0",
"jsonwebtoken": "^8.5.1",
"leaflet": "^1.7.1",
"leaflet.markercluster": "^1.5.1",
"ms": "^2.1.3",
"next": "^11.1.2",
"preact": "^10.5.14",
"promise-mysql": "^5.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hotkeys-hook": "^3.4.3",
"react-markdown": "^7.0.1",
"react-redux": "^7.2.5",
"react-select": "^5.0.0",
"react-toastify": "^8.0.3",
"redux": "^4.1.1",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"socket.io": "^4.2.0",
"socket.io-client": "^4.2.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@casper124578/eslint-config": "^1.0.0",
"@casper124578/eslint-config-next": "^0.1.1",
"@casper124578/eslint-config-react": "^0.1.2",
"@types/bcryptjs": "^2.4.2",
"@types/bootstrap": "^5.1.6",
"@types/cookie": "^0.4.1",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.1.7",
"@types/jsonwebtoken": "^8.5.5",
"@types/leaflet": "^1.7.5",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/uuid": "^8.3.1",
"eslint": "^7.32.0",
"husky": "^7.0.2",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"sharp": "^0.29.1",
"symbol-observable": "^4.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=14.0.0"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": false,
"printWidth": 100,
"tabWidth": 2
}
}