-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.88 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.88 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
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
{
"name": "rufluServer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon ./app.js",
"start": "forever start -w app.js",
"lint": "eslint src/*",
"format": "prettier \"./**/*.+(js|json)",
"test": "jest --maxWorkers=1",
"simple-git-hooks": "simple-git-hooks",
"lint-staged": "lint-staged",
"prepare": "yarn simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"add": "^2.0.6",
"app-root-path": "^3.0.0",
"axios": "^1.3.4",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-generator": "^4.14.1",
"firebase-admin": "^11.9.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.0",
"moment-timezone": "^0.5.43",
"multer": "^1.4.5-lts.1",
"multiline": "^2.0.0",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"node-fetch": "^3.2.3",
"or": "^0.2.0",
"request": "^2.88.2",
"require": "^0.4.4",
"socket.io": "^4.4.1",
"uuid": "^9.0.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5",
"yarn": "^1.22.18"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"jest": "^29.3.1",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"prettier": "^2.8.2",
"simple-git-hooks": "^2.8.1",
"supertest": "^6.3.3"
}
}