-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"name": "node-cmd",
"version": "0.0.1",
"main": "index.js",
"author": "Lukas Fuchs <panzelva@gmail.com>",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/minio": "^7.0.10",
"@types/node": "^16.9.4",
"@types/pino": "^6.3.11",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"@google-cloud/storage": "^5.14.2",
"core-js": "3.18.0",
"date-fns": "^2.24.0",
"dotenv": "^10.0.0",
"envalid": "^7.2.1",
"got": "^11.8.2",
"minio": "^7.0.19",
"pino": "^6.13.2",
"pino-pretty": "^7.0.1"
},
"scripts": {
"start": "NODE_ENV=development babel-node --extensions .ts src/app.ts",
"build": "yarn build:clean && yarn build:types && yarn build:js",
"build:clean": "rimraf ./dist && rimraf ./build",
"build:types": "tsc --noEmit",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"lint": "eslint ./src --ext .js,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"format": "prettier src/**/*.{js,ts,tsx} --list-different",
"format:fix": "yarn format --write"
},
"volta": {
"node": "14.16.1",
"yarn": "1.22.10"
}
}