This repository has been archived by the owner on Apr 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.04 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
74
75
76
77
78
79
80
81
82
83
84
85
{
"private": true,
"engines": {
"node": "16",
"npm": "8"
},
"targets": {
"assets": {
"context": "browser",
"outputFormat": "esmodule",
"source": [
"assets/behaviour.ts",
"assets/style.css"
]
},
"server": {
"context": "node",
"includeNodeModules": [
"http-methods-ts",
"hyper-ts-routing",
"hyper-ts-session",
"logger-ts",
"orcid-ts",
"url-ts"
],
"scopeHoist": false,
"source": "src/index.ts"
}
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@godaddy/terminus": "^4.10.1",
"anonymus": "^2.1.3",
"clock-ts": "^0.1.0",
"cls-rtracer": "^2.6.0",
"cookie-parser": "^1.4.6",
"doi-ts": "^0.1.1",
"dotenv": "^14.2.0",
"express": "^4.17.2",
"fetch-fp-ts": "^0.1.3",
"fp-ts": "^2.11.8",
"fp-ts-contrib": "^0.1.28",
"fp-ts-routing": "^0.5.4",
"fp-ts-std": "^0.13.1",
"http-errors": "^1.8.1",
"http-methods-ts": "*",
"http-status-codes": "^2.2.0",
"hyper-ts": "^0.7.8",
"hyper-ts-routing": "*",
"hyper-ts-session": "*",
"io-ts": "^2.2.16",
"logger-fp-ts": "^0.2.0",
"node-fetch": "^2.6.7",
"orcid-ts": "*",
"text-clipper": "^2.2.0",
"ts-pattern": "^3.3.4",
"url-ts": "*"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"@tsconfig/node16": "^1.0.2",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@types/node": "^16.11.19",
"@types/node-fetch": "^2.6.1",
"bootstrap": "^5.1.3",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"parcel": "^2.3.2",
"prettier": "^2.5.1",
"process": "^0.11.10",
"typescript": "^4.5.4",
"wait-on": "^6.0.1"
},
"scripts": {
"format": "prettier --ignore-unknown --write '**'",
"watch": "parcel watch",
"serve": "wait-on dist/server/index.js && nodemon --delay 1 dist/server/index.js",
"start": "run-p watch serve",
"typecheck": "tsc"
}
}