-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.23 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.23 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
{
"name": "lorawan-cups-server",
"version": "1.0.0",
"description": "A minimal, production-ready LoRaWAN CUPS (Configuration and Update Server) built with Fastify and TypeScript.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node index.ts",
"build": "npx tsc",
"start": "node dist/index.js",
"eslint": "eslint",
"eslint:fix": "eslint --fix",
"check-types": "tsc --noEmit",
"lint-and-types": "npm run eslint && npm run check-types",
"prepare": "husky install"
},
"authors": [
{
"name": "Bobby Bol",
"email": "studio.innua@gmail.com"
},
{
"name": "Tommaso Girotto",
"email": "tommaso.girotto91@gmail.com"
}
],
"license": "MPL-2.0",
"dependencies": {
"@aws-sdk/client-s3": "^3.817.0",
"crc": "^4.3.2",
"dotenv-safe": "^9.1.0",
"fastify": "^5.3.3",
"pino": "^8.21.0"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/dotenv-safe": "^8.1.6",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --max-warnings=0"
]
}
}