-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.23 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
{
"name": "youtube-to-discord",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/dbkynd/youtube-to-discord.git",
"author": "DBKynd <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node-dev --respawn --transpile-only -r dotenv/config ./src",
"build": "rimraf ./dist && tsc -p ./tsconfig.build.json",
"start": "cross-env NODE_ENV=production node -r dotenv/config ./dist",
"prettier": "prettier --write \"**/*.{js,ts,md,vue,*rc,json}\" --ignore-path .gitignore",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"consola": "^2.15.3",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
}
}