-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 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
54
55
56
57
58
{
"name": "doorman-v1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"_prestart": "npm run build",
"_start": "node dist/index.js",
"_build": "tsc",
"unixstart": "nodemon --watch 'src/**/*.ts' --exec 'npx ts-node' src/index.ts",
"start": "nodemon --watch \"src\\**\\*.ts\" --exec \"ts-node\" src\\index.ts",
"build": "tsc && npx copyfiles -u 2 'src/views/**/*' dist/views/ && npm run prodhtml",
"winbuild": "tsc && npx copyfiles -u 2 src/views/**/* dist/views/ && npm run devhtml",
"prodhtml":"bash src/utils/write-defaults.sh prod",
"devhtml":"\"\"C:/Program Files/Git/usr/bin/bash.exe\"\" -c 'src/utils/write-defaults.sh dev'",
"serve": "node dist/index.js"
},
"keywords": [],
"author": "Will Sutton",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"http-proxy": "^1.18.1",
"qrcode": "^1.5.3",
"sequelize": "^6.32.1",
"sqlite3": "^5.1.6",
"ws": "^8.13.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.17",
"@types/node": "^20.4.2",
"@types/qrcode": "^1.5.1",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"concurrently": "^8.2.0",
"copyfiles": "^2.4.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"nodemon": "^3.0.1",
"prettier": "3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"repository": "https://github.com/sutt/DoorMan"
}