-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.08 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
{
"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": "^10.0.1",
"fastify": "^5.0.0",
"runes": "^0.4.3",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.13.0",
"jest": "^29.7.0",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}