-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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
{
"name": "temba",
"version": "0.38.0",
"description": "Get a simple REST API with zero coding in less than 30 seconds (seriously).",
"type": "module",
"main": "dist/src/index.js",
"scripts": {
"build": "rm -rf dist && tsc && tsc-alias && cp package.json README.md ./dist/src",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts . && npx tsc",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"repository": {
"type": "git",
"url": "https://github.com/bouwe77/temba.git"
},
"homepage": "https://github.com/bouwe77/temba#readme",
"author": "Bouwe (https://bouwe.io)",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/etag": "^1.8.3",
"@types/express": "^4.17.21",
"@types/indefinite": "^2.3.4",
"@types/morgan": "^1.9.9",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"dependencies": {
"@rakered/mongo": "^1.6.0",
"ajv": "^8.17.1",
"connect-pause": "^0.1.0",
"cors": "^2.8.5",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.5",
"etag": "^1.8.1",
"express": "^4.19.2",
"indefinite": "^2.5.1",
"lowdb": "^7.0.1",
"morgan": "^1.10.0",
"openapi3-ts": "^4.4.0"
}
}