This repository was archived by the owner on Apr 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.37 KB
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
{
"name": "dutchtimemanager-api",
"version": "0.1.0",
"description": "Private API for the dutchtime manager app.",
"main": "out/server.js",
"type": "module",
"scripts": {
"start": "npm run build && npm run run",
"start:dev": "tsc && npm run run:dev",
"build": "gulp -f gulpfile.cjs",
"run": "node out/server.js",
"run:dev": "node -r source-map-support/register out/server.js"
},
"author": "Alex",
"license": "MPL-2.0",
"private": true,
"dependencies": {
"@js-temporal/polyfill": "^0.3.0",
"bree": "^7.1.5",
"express": "^4.17.2",
"express-rate-limit": "^6.2.0",
"googleapis": "^96.0.0",
"googleapis-common": "^5.0.5",
"js-yaml": "^4.1.0",
"mysql2-async": "^1.1.1",
"typescript": "next",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/express-rate-limit": "^6.0.0",
"@types/express": "^4.17.13",
"@types/js-yaml": "^4.0.5",
"@types/yargs": "^17.0.8",
"@types/node": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.10.0",
"gulp": "^4.0.2",
"gulp-typedoc": "^3.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"source-map-support": "^0.5.21",
"typedoc": "^0.22.11"
}
}