forked from brainlife/ezbids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.81 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
{
"name": "ezbids",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"uidev": "cd ui && lite-server",
"tsc": "tsc",
"dev": "ts-node-dev --respawn --transpileOnly ./api/ezbids.ts",
"prod": "tsc && node ./build/ezbids.js",
"deploy": "ssh -t [email protected] \"sudo su - -c 'cd /root/docker/ezbids && ./update.sh'\"",
"deploy-prod": "ssh -t -J [email protected] ubuntu@ezbids \"sudo su - -c 'cd /root/docker/ezbids && ./update.sh'\"",
"style-check": "prettier --config .prettierrc.json --check",
"lint-check": "eslint --ext .ts,.vue,.js",
"lint-staged": "lint-staged --config .lintstagedrc.json"
},
"author": "",
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.13",
"archiver": "^5.3.0",
"async": "^3.2.3",
"body-parser": "^1.19.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.3",
"express-fileupload": "^1.3.1",
"mkdirp": "^1.0.4",
"mongoose": "^6.2.7",
"multer": "^1.4.4",
"nan": "^2.17.0",
"nocache": "^2.1.0",
"node-pty": "^0.10.1",
"range-stream": "^1.1.0",
"send-seekable": "^1.0.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@types/async": "^3.2.12",
"@types/cors": "^2.8.12",
"@types/node": "^16.11.26",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"typescript": "^4.7.2"
}
}