-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "piny-api",
"version": "1.0.0",
"description": "API server for tiny bookmarking service",
"type": "module",
"private": true,
"scripts": {
"start": "ts-node -T server.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"sync": "ts-node sync.ts",
"dev": "nodemon server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exah/piny-api.git"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"semi": false,
"trailingComma": "es5",
"printWidth": 80
},
"keywords": [],
"author": "John Grishin <hi@johngrish.in>",
"license": "ISC",
"bugs": {
"url": "https://github.com/exah/piny-api/issues"
},
"homepage": "https://github.com/exah/piny-api#readme",
"dependencies": {
"@koa/router": "^12.0.0",
"@types/co-body": "^6.1.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/koa": "^2.11.4",
"@types/koa__router": "^12.0.0",
"@types/node": "^18.15.11",
"@types/sqlite3": "^3.1.6",
"co-body": "^6.0.0",
"jsonwebtoken": "^9.0.0",
"koa": "^2.13.0",
"nodemon": "^2.0.4",
"sqlite3": "^5.0.0",
"ts-node": "^10.9.1",
"typeorm": "^0.3.14",
"typescript": "^5.0.3"
}
}