-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "alien-worlds-robot",
"version": "0.1.0",
"description": "A miner robot for Alien Worlds.",
"engines": {
"node": ">= 16.13"
},
"devDependencies": {
"@types/dingtalk-robot-sender": "^1.1.1",
"@types/jest": "~27.0.2",
"@types/node": "~16.11.6",
"@types/puppeteer": "^5.4.4",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "~5.7.0",
"@typescript-eslint/parser": "~5.7.0",
"eslint": "~8.4.1",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~25.3.0",
"jest": "~27.4.4",
"prettier": "~2.5.1",
"rimraf": "~3.0.2",
"ts-jest": "~27.1.1",
"tsutils": "~3.21.0",
"typescript": "~4.5.3"
},
"scripts": {
"dev": "npm run build:watch",
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Jakub Synowiec <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.25.0",
"dotenv": "^14.3.0",
"merge-anything": "^5.0.2",
"moment": "^2.29.1",
"monent": "^0.0.2-security",
"numeral": "^2.0.6",
"promise-sequential": "^1.1.1",
"puppeteer": "^13.1.1",
"sleep": "^6.3.0",
"tslib": "~2.3.1",
"urllib": "^2.38.0",
"yargs": "^17.3.1"
},
"volta": {
"node": "16.13.0"
}
}