-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.63 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.63 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
{
"name": "teamview",
"version": "1.0.0",
"description": "backend service for sharing player & planet infos within teams",
"keywords": [
"pr0game",
"online game",
"2moons"
],
"main": "index.js",
"scripts": {
"lint": "npx standard",
"dev": "NODE_ENV=development npx ts-node-dev --poll --respawn --transpile-only index.js",
"test": "npm run lint",
"start": "NODE_ENV=production node ./build/index.js | pino-tee info ./logs/info.log | pino-tee error ./logs/error.log",
"build": "tsc",
"apidoc": "apidoc -i lib/ -o public/api"
},
"author": "Andreas Offenhaeuser <https://anoff.io>",
"license": "MIT",
"dependencies": {
"ajv": "^8.11.0",
"axios": "^0.27.2",
"change-case": "^4.1.2",
"cron": "^2.0.0",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"express-validator": "^6.14.0",
"knex": "^2.0.0",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"pino": "^7.11.0",
"pino-http": "^7.0.0",
"pino-tee": "^0.3.0",
"random-words": "^1.1.2",
"sqlite3": "^5.0.8"
},
"devDependencies": {
"@types/node": "^18.15.3",
"apidoc": "^0.51.1",
"html-loader": "^3.1.0",
"nodemon": "^2.0.16",
"pino-pretty": "^7.6.1",
"standard": "^17.0.0",
"typescript": "^4.9.5"
},
"nodemonConfig": {
"ignore": [
"userscript/",
"dist/",
"package.json",
".devcontainer/*"
],
"exec": "node index.js | pino-pretty"
},
"standard": {
"ignore": [
"public/teamview.js",
"**/*.ts"
]
},
"apidoc": {
"title": "Teamview API spec",
"url": "https://uni2.teamview.mietemieze.de",
"version": "0.6.0"
}
}