-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
59 lines (59 loc) · 1.68 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
{
"name": "koii-task-template",
"version": "2.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "tsx watch ./tests/prod-debug.ts",
"prod-debug": "yarn start",
"webpack": "webpack",
"webpack:test": "webpack --config ./tests/webpack.config.js",
"simulate": "tsx ./tests/simulateTask.ts",
"jest-test": "jest --detectOpenHandles",
"lint": "eslint . --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"test": "tsx ./tests/testTask.ts"
},
"type": "module",
"author": "Koii Network",
"license": "ISC",
"dependencies": {
"@_koii/task-manager": "^1.0.8",
"@_koii/namespace-wrapper": "^1.0.16",
"@_koii/web3.js": "^0.1.11",
"dotenv": "^16.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/cross-spawn": "^6.0.6",
"@types/eslint": "^9.6.1",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.9",
"@types/node": "^22.7.4",
"@types/tail": "^2.2.3",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"axios": "^1.7.2",
"babel-jest": "^29.7.0",
"chalk": "^5.3.0",
"cross-spawn": "^7.0.3",
"dotenv-webpack": "^8.1.0",
"eslint": "^8.57.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"joi": "^17.9.2",
"prettier": "^3.3.3",
"tail": "^2.2.6",
"ts-loader": "^9.5.1",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0"
},
"engines": {
"node": ">=18.17.0"
}
}