-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.48 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
55
{
"name": "@reliquaryhq/server",
"version": "0.1.2",
"description": "API server for Reliquary",
"repository": "github:reliquaryhq/server",
"author": "Reliquary Contributors",
"license": "MIT",
"keywords": [
"reliquary"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .js,.mjs,.ts",
"prepublishOnly": "npm run lint && rimraf ./dist && npm run build",
"release": "standard-version",
"start": "tsc --incremental && node --enable-source-maps --no-warnings ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist"
],
"bin": {
"reliquary-server": "./dist/index.js"
},
"dependencies": {
"@koa/cors": "3.0.0",
"@koa/router": "8.0.8",
"@reliquaryhq/types": "0.1.0",
"camelcase": "5.2.0",
"dotenv": "8.2.0",
"globby": "11.0.0",
"koa": "2.11.0",
"koa-bodyparser": "4.3.0",
"slonik": "22.4.4"
},
"devDependencies": {
"@types/camelcase": "5.2.0",
"@types/koa": "2.11.3",
"@types/koa-bodyparser": "4.3.0",
"@types/koa__cors": "3.0.1",
"@types/koa__router": "8.0.2",
"@types/slonik": "22.1.2",
"@typescript-eslint/eslint-plugin": "2.29.0",
"@typescript-eslint/parser": "2.29.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.3",
"husky": "4.2.5",
"lint-staged": "10.1.7",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"standard-version": "7.1.0",
"typescript": "3.8.3"
}
}