-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.1 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
{
"name": "berlin-lea-performance-monitor",
"version": "1.20.2",
"author": "David Leclerc",
"main": "./src/index.ts",
"scripts": {
"start": "cross-env ENV=development nodemon ./src/index.ts --analyze",
"bot": "npm run bot:compile && cross-env ENV=production node ./dist/bot/src/index.js --bot",
"poll": "npm run compile && cross-env ENV=production node ./dist/local/src/index.js --poll",
"poll:once": "npm run compile && cross-env ENV=production node ./dist/local/src/index.js --poll --once",
"analyze": "npm run compile && cross-env ENV=production node ./dist/local/src/index.js --analyze",
"clean": "npm run compile && cross-env ENV=production node ./dist/local/src/index.js --clean",
"compile": "npm run delete && npm run build",
"bot:compile": "npm run bot:delete && npm run bot:build",
"build": "tsc -p ./tsconfig.json && copyfiles -a -u 3 ./data/production/logs/**/* ./data/local/logs",
"bot:build": "tsc -p ./tsconfig.bot.json",
"delete": "rimraf ./dist/local && rimraf ./data/local",
"bot:delete": "rimraf ./dist/bot",
"lint": "eslint ./src",
"package:main": "echo \"Main: $npm_package_main\"",
"package:name": "echo \"Name: $npm_package_name\"",
"package:version": "echo \"Version: $npm_package_version\""
},
"dependencies": {
"chart.js": "^3.9.1",
"chartjs-adapter-moment": "^1.0.1",
"chartjs-node-canvas": "^4.1.6",
"check-disk-space": "^3.4.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"minimist": "^1.2.8",
"node-cron": "^3.0.2",
"pino": "^8.15.0",
"pino-pretty": "^10.2.0",
"selenium-webdriver": "^4.12.0"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/minimist": "^1.2.2",
"@types/node": "^18.11.18",
"@types/node-cron": "^3.0.8",
"@types/selenium-webdriver": "^4.1.16",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}