-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.08 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
{
"name": "server-demo",
"version": "0.1.0",
"private": true,
"author": "3Box Labs",
"license": "(Apache-2.0 OR MIT)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"sideEffects": false,
"scripts": {
"dev": "npx tsx src/index.ts",
"prestart": "npm run build",
"build:clean": "del dist",
"build:js": "swc src -d ./dist --config-file .swcrc --strip-leading-paths",
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly --skipLibCheck",
"build": "npm run build:clean && npm run build:types && npm run build:js",
"lint": "eslint src --fix",
"prepare": "npm run build",
"start": "node ."
},
"devDependencies": {
"@ceramic-solutions/key-did": "^0.1.0",
"@ceramic-solutions/points": "^0.1.2",
"@jest/globals": "^29.7.0",
"@skypack/package-check": "^0.2.2",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"del-cli": "^5.1.0",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.4.13",
"@swc/jest": "^0.2.36",
"key-did-provider-ed25519": "^4.0.2",
"key-did-resolver": "^4.0.0",
"nodemon": "^3.1.0",
"ts-node": "^10.9.1",
"eslint": "^8.57.0",
"eslint-config-3box": "^1.0.0",
"eslint-plugin-jest": "^28.2.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"uint8arrays": "^5.0.3",
"@composedb/types": "^0.7.1",
"typescript": "^5.4.4"
},
"dependencies": {
"@ceramicnetwork/http-client": "^5.7.0",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"exec": "^0.2.1",
"express": "^4.21.0",
"tsx": "^4.7.1"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.(t|j)s$": [
"@swc/jest",
{
"root": "../.."
}
]
}
}
}