-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "stocazzo-as-a-service",
"version": "2.0.0",
"description": "Yet Another Cloud Antani",
"scripts": {
"test": "jest",
"lint": "eslint *.ts lib/*.ts test/*.ts",
"prettier": "prettier **/*.ts --write",
"dev": "ts-node --files ./index.ts",
"build": "rm -rf dist && tsc --sourceMap -p ./"
},
"repository": {
"type": "git",
"url": "https://github.com/dottorblaster/stocazzo.git"
},
"keywords": [
"node"
],
"author": "Alessio \"Blaster\" Biancalana",
"license": "MIT",
"bugs": {
"url": "https://github.com/dottorblaster/stocazzo/issues"
},
"homepage": "https://github.com/dottorblaster/stocazzo",
"dependencies": {
"@drblaster/pipe": "^1.0.1",
"@fastify/cors": "^11.2.0",
"fastify": "^5.8.5",
"runes": "^0.4.3",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/runes": "^0.4.3",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.60.0",
"eslint": "^10.3.0",
"jest": "^30.4.2",
"prettier": "3.8.3",
"ts-jest": "^29.4.9",
"typescript": "^6.0.3"
}
}