-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.81 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.81 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "node-rollup-typescript-starter",
"version": "1.0.0",
"description": "A simple Rollup starter to starts writing Node applications with Typescript",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"repository": "https://github.com/Liinkiing/node-rollup-typescript-starter",
"author": "Omar Jbara <omar.jbara2@gmail.com>",
"license": "MIT",
"keywords": [
"rollup",
"typescript",
"template",
"starter",
"boilerplate",
"node"
],
"scripts": {
"start": "cross-env NODE_ENV=production node -r pretty-error/start -r dotenv-flow/config dist/cjs/index.js",
"dev": "cross-env NODE_ENV=development nodemon",
"ts:check": "tsc --noEmit",
"lint": "eslint --no-error-on-unmatched-pattern --cache --fix --report-unused-disable-directives src/**/*.{js,ts,jsx,tsx}",
"build": "rimraf dist && rollup -c",
"build:watch": "rimraf dist && rollup -c -w",
"prepare": "husky install"
},
"dependencies": {
"@discordjs/opus": "^0.5.0",
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"airtable": "^0.10.1",
"chalk": "^4.1.0",
"cross-env": "^7.0.3",
"discord.js": "^12.5.3",
"dotenv-flow": "^3.2.0",
"eslint-plugin-prettier": "^3.3.1",
"ffmpeg-static": "^4.3.0",
"fluent-ffmpeg": "^2.1.2",
"lodash": "^4.17.21",
"mobx": "^6.1.8",
"pretty-error": "^3.0.3",
"yargs": "^16.2.0",
"ytdl-core": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"@types/airtable": "^0.8.1",
"@types/express": "^4.17.11",
"@types/fluent-ffmpeg": "^2.1.17",
"@types/lodash": "^4.14.168",
"@types/rollup": "^0.54.0",
"@types/ws": "^7.4.1",
"@types/yargs": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"@wessberg/rollup-plugin-ts": "^1.3.11",
"babel-loader": "^8.2.2",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-loader": "^4.0.2",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.44.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"tslib": "^2.2.0",
"typescript": "^4.2.3"
},
"lint-staged": {
"*.{js,css,json,md,ts}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}