-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "@digichanges/shared-experience",
"version": "1.4.1",
"description": "All shared packages for node experience",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"check": "tsc -p tsconfig.json --noEmit",
"prepublish": "node rimraf.mjs && tsc",
"test": "jest --coverage"
},
"author": "Nathan M. Russo",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.0",
"koa": "^2.14.2",
"koa-qs": "^3.0.0",
"koa-router": "^12.0.0",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"minio": "^7.1.1",
"qs": "^6.10.1",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.5.3",
"@types/koa": "^2.13.6",
"@types/koa-qs": "^2.0.0",
"@types/koa-router": "^7.4.4",
"@types/lodash": "^4.14.195",
"@types/md5": "^2.3.2",
"@types/node": "^18.16.19",
"@types/qs": "^6.9.6",
"jest": "^29.6.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
},
"publishConfig": {
"access": "public"
}
}