-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 863 Bytes
/
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
{
"name": "lapisdb-example",
"version": "0.0.1",
"description": "LapisDB example",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"start:build": "npm run build && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kekland/lapisdb-example.git"
},
"author": "kekland <kk.erzhan@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kekland/lapisdb-example/issues"
},
"homepage": "https://github.com/kekland/lapisdb-example#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"lapisdb": "^0.4.2",
"lapisdb-level-adapter": "0.1.0"
},
"devDependencies": {
"@types/express": "^4.17.0",
"rimraf": "^2.6.3"
}
}