-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.57 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.57 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
{
"dependencies": {
"colors": "^1.4.0",
"connect-multiparty": "^2.2.0",
"cors": "^2.8.5",
"cron": "^1.8.2",
"eslint": "^8.9.0",
"eslint-plugin-spellcheck": "^0.0.19",
"express": "^4.17.2",
"form-data": "^4.0.0",
"formidable": "^2.0.1",
"fs-extra": "^10.0.0",
"http-proxy": "^1.18.1",
"husky": "^7.0.4",
"jsonwebtoken": "^8.5.1",
"lib": "file:./lib",
"lint-staged": "^12.3.4",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"mongodb": "^4.4.0",
"nodemailer": "^6.7.2",
"password-prompt": "^1.1.2",
"raw-body": "^2.5.1",
"sodajs": "^0.4.10",
"utils": "file:./utils",
"uuid": "^8.3.2",
"vhost": "^3.0.2",
"winston": "^3.6.0",
"winston-mongodb": "^5.0.7",
"winston-transport": "^4.5.0"
},
"name": "oscc-backend",
"description": "OSCC Backend",
"version": "0.0.0",
"main": "index.js",
"type": "module",
"directories": {
"lib": "lib",
"router": "router",
"modules": "modules",
"scripts": "scripts"
},
"scripts": {
"lint": "eslint . --fix",
"stat": "cloc --exclude-dir=node_modules,var --exclude-ext=json ."
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/oscc-web/oscc-backend.git"
},
"author": "Yuxuan Zhang",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/oscc-web/oscc-backend/issues"
},
"homepage": "",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"git add"
]
}
}