-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.53 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.53 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@_linked/server",
"description": "HTTP server & utilities for LINCD applications, running on node.js.",
"author": {
"name": "René Verheij",
"url": "https://github.com/flyon",
"email": "rpwverheij@gmail.com"
},
"repository": {
"type": "git",
"url": ""
},
"version": "1.0.8",
"linkedPackage": true,
"main": "lib/cjs/index.js",
"types": "dist/lincd-server.d.ts",
"license": "ISC",
"scripts": {
"start": "npm exec linked dev",
"build": "yarn linked build",
"prepublishOnly": "yarn linked build production",
"postpublish": "npm exec linked register"
},
"keywords": [
"lincd",
"server",
"nodejs",
"express",
"linked data",
"interoperable",
"semantic web",
"web3"
],
"dependencies": {
"@_linked/cli": "^1.2",
"@_linked/core": "^2.2.1",
"@_linked/server-utils": "~1.0",
"adm-zip": "^0.5.16",
"archiver": "^7.0.1",
"autoprefixer": "^10.4.18",
"body-parser": "^1.20.2",
"chalk": "4.1.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cron": "^4.3.4",
"express": "^4.18.3",
"fetch-cookie": "^3.1.0",
"is-object": "^1.0.2",
"lincd-sioc": "~1.0",
"n3": "^1.17.2",
"node-addon-api": "^8.2.2",
"node-hook": "^1.0.0",
"open": "^8.4.0",
"proper-lockfile": "^4.1.2",
"react": "^18.2",
"react-dom": "^18.2",
"react-error-boundary": "^4.0.13",
"react-router-dom": "^6.22.3",
"rimraf": "^5.0.5",
"sharp": "^0.34.4",
"tough-cookie": "^6.0.0",
"tsconfig-to-dual-package": "^1.2.0",
"typescript": "^5.7.3",
"webpack": "^5.90.3",
"webpack-dev-middleware": "^7.0.0",
"webpack-hot-middleware": "^2.26.1",
"zip-a-folder": "^3.1.8"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@types/react-dom": "^18.0.6",
"cross-env": "^7.0.3",
"prettier": "3.2.5",
"typescript-plugin-css-modules": "^5.1.0",
"@changesets/cli": "^2.29.8",
"@changesets/changelog-github": "^0.5.2"
},
"module": "lib/esm/index.js",
"exports": {
".": {
"types": "./lib/esm/index.d.ts",
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"./*.js": {
"types": "./lib/esm/*.d.ts",
"import": "./lib/esm/*.js",
"require": "./lib/cjs/*.js"
},
"./*": {
"types": "./lib/esm/*.d.ts",
"import": "./lib/esm/*.js",
"require": "./lib/cjs/*.js"
}
},
"typesVersions": {
"*": {
"*": [
"lib/esm/*"
]
}
},
"publishConfig": {
"access": "public"
}
}