-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.68 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
{
"name": "dynamicqr-service",
"version": "0.0.1",
"description": "DynamicQR活码平台_后端",
"license": "Apache-2.0",
"author": {
"name": "Seele.Clover",
"email": "37256067+seeleclover@users.noreply.github.com",
"url": "https://github.com/seeleclover"
},
"homepage": "https://github.com/gdmuna/DynamicQR",
"repository": {
"type": "git",
"url": "git+https://github.com/gdmuna/DynamicQR.git"
},
"engines": {
"node": "^18.0.0 || ^20.0.0"
},
"main": "app.js",
"scripts": {
"dev": "cross-env NODE_ENV=development node ./app.js",
"start": "cross-env NODE_ENV=production node ./app.js",
"eslint": "eslint . --fix",
"prettier": "prettier . --write",
"prepare": "husky install",
"lint:lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,cjs,mjs,jsx,ts,tsx,html,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss,less,styl}": [
"prettier --write"
],
"*.{json,yml,yaml}": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"dependencies": {
"bcrypt": "^5.1.1",
"config": "^3.3.11",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mariadb": "^3.3.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5"
}
}