-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
54
{
"name": "deta-base-orm",
"version": "0.5.4",
"description": "Basic ORM for Deta Base",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"prebuild": "npm run clean",
"start": "ts-node",
"dev": "ts-node dev/index.ts",
"dev:example": "tsc-watch --onSuccess \"node ./example/index.js\"",
"watch": "tsc-watch",
"build": "tsc -p tsconfig.json",
"lint": "eslint ./src/ --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BetaHuhn/deta-base-orm.git"
},
"bugs": {
"url": "https://github.com/BetaHuhn/deta-base-orm/issues"
},
"homepage": "https://github.com/BetaHuhn/deta-base-orm#readme",
"author": "Maximilian Schiller <schiller@mxis.ch>",
"license": "MIT",
"keywords": [
"nodejs",
"typescript"
],
"dependencies": {
"bson": "^4.4.1",
"deta": "^1.0.0",
"dotenv": "^10.0.0",
"lowdb": "^1.0.0",
"nanoid": "^3.1.23"
},
"devDependencies": {
"@betahuhn/config": "^1.1.0",
"@types/lodash": "^4.14.176",
"@types/lowdb": "^1.0.11",
"@types/node": "^16.4.13",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"tsc-watch": "^4.2.9",
"typescript": "^4.2.4"
}
}