This repository was archived by the owner on Oct 2, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "@runcitadel/utils",
"version": "0.9.2",
"main": "lib/index.js",
"type": "module",
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"tsc:check": "tsc --noEmit",
"lint": "eslint --fix . && prettier -w .",
"lint:check": "eslint . \"src/**/*.ts\"",
"docs": "typedoc src/index.ts",
"prepublish": "yarn lint && yarn test && yarn build",
"test": "tsc && jest lib --maxWorkers=50%"
},
"dependencies": {
"@types/big.js": "^6.1.3",
"@types/koa": "^2.13.4",
"@types/koa__router": "^8.0.11",
"@types/validator": "^13.7.1",
"big.js": "^6.1.1",
"validator": "^13.7.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/prettier": "^2",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"babel-jest": "^27.5.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"typedoc": "^0.22.13",
"typescript": "^4.6.2"
},
"packageManager": "yarn@3.2.0"
}