-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.26 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
{
"name": "spotify_galaxy",
"version": "1.0.0",
"main": "index.js",
"license": "GPL-3.0-only",
"devDependencies": {
"@types/mssql": "^7.1.5",
"@types/node": "^16.11.11",
"@types/node-cron": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"prettier": "^2.6.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.2"
},
"scripts": {
"tsc": "tsc",
"clean": "rm -rf ./build",
"dev": "ts-node-dev --respawn --transpile-only --compiler-options={\\\"module\\\":\\\"commonjs\\\"} ./src/main.ts",
"dev-strict": "ts-node-dev --respawn --compiler-options={\\\"module\\\":\\\"commonjs\\\"} --files=true ./src/main.ts",
"cli-dev": "ts-node-dev --transpile-only --compiler-options={\\\"module\\\":\\\"commonjs\\\"} ./src/cli.ts",
"build": "rm -rf ./build && tsc",
"prod": "node ./build/main.js",
"cli": "node ./build/cli.js"
},
"dependencies": {
"async-parallel": "^1.2.3",
"commander": "^9.0.0",
"date-fns": "^2.28.0",
"mssql": "^8.0.2",
"node-cron": "^3.0.0",
"tslog": "^3.3.2",
"yaml": "^1.10.2"
}
}