generated from curveball/starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.11 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@badgateway/tt-api",
"version": "0.10.1",
"description": "A time tracking API",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "tsc",
"build": "tsc",
"start": "node dist/index.js",
"start:watch": "npx tsc-watch --onSuccess 'node --inspect dist/index.js'",
"watch": "tsc --watch",
"lint": "eslint --quiet 'src/*.ts'",
"fix": "eslint --quiet 'src/**/*.ts' --fix",
"knex:migrate:make": "knex --knexfile src/knexfile.ts migrate:make -x ts",
"knex:migrate:latest": "knex --knexfile src/knexfile.ts migrate:latest",
"knex:migrate:rollback": "knex --knexfile src/knexfile.ts migrate:rollback"
},
"repository": {
"type": "git",
"url": "git+https://github.com/curveball/new-package.git"
},
"files": [
"package.json",
"README.md",
"dist",
"LICENSE"
],
"author": "Evert Pot (https://evertpot.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/badgateway/tt-api/issues"
},
"homepage": "https://github.com/badgateway/tt-api#readme",
"devDependencies": {
"@badgateway/tt-types": "^0.10.2",
"@types/luxon": "^3.0.1",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"ketting": "^7.3.0",
"ts-node": "^10.4.0",
"tsc-watch": "^5.0.3",
"typescript": "^4.1.2"
},
"types": "dist/",
"nyc": {
"extension": [
".ts"
]
},
"dependencies": {
"@badgateway/oauth2-client": "^2.0.16",
"@curveball/accesslog": "^0.3.0",
"@curveball/bodyparser": "^0.5.0",
"@curveball/browser": "^0.19.3",
"@curveball/browser-to-bearer": "^0.4.1",
"@curveball/controller": "^0.4.0",
"@curveball/core": "^0.20.0",
"@curveball/cors": "^0.2.0",
"@curveball/links": "^0.2.0",
"@curveball/oauth2": "^0.4.2",
"@curveball/problem": "^0.4.0",
"@curveball/router": "^0.5.0",
"@curveball/session": "^0.8.0",
"@curveball/validator": "^0.10.0",
"dotenv": "^16.0.2",
"knex": "^2.3.0",
"luxon": "^3.0.4",
"mysql-types-generator": "^1.0.3",
"mysql2": "^2.3.3"
}
}