-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.42 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
{
"name": "bes-propres7-migrator",
"version": "1.0.0",
"description": "A converter from .txt song lyrics to ProPresenter7 .pro format.",
"main": "index.ts",
"scripts": {
"test:ci": "NODE_ENV=test TZ='Europe/Bucharest' jest --runInBand --no-cache",
"test:watch": "NODE_ENV=test TZ='Europe/Bucharest' jest --watch --logHeapUsage",
"test": "is-ci-cli test:ci test:watch",
"convert:local": "dotenv -e .env.local ts-node runner.ts",
"convert:remote": "dotenv -e .env.remote ts-node runner.ts"
},
"author": "Ioan Lucut",
"dependencies": {
"@googleapis/drive": "^8.7.0",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.1",
"fs-extra": "^11.2.0",
"google-protobuf": "^3.21.2",
"lodash": "^4.17.21",
"p-map": "^4.0.0",
"protobufjs": "^7.2.6",
"recursive-readdir": "^2.2.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@tsconfig/node-lts": "^18.12.5",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.6",
"@types/recursive-readdir": "^2.2.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"is-ci-cli": "^2.2.0",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^2.8.8",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-proto": "^1.171.0",
"tslib": "^2.6.2",
"typescript": "5.1.6"
}
}