-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.84 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
53
54
55
56
57
{
"name": "xsura",
"version": "0.0.7",
"license": "MIT",
"main": "./dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored",
"build:tsc": "tsc -p tsconfig-build.json && tscpaths -p tsconfig.json -s ./src -o ./dist",
"docker:build": "docker build -t joaom182/ts-node .",
"docker:run": "docker run joaom182/ts-node",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --ignore-watch node_modules --no-notify src/index.ts",
"lint:fix": "eslint --fix --ext .ts .",
"lint": "eslint --ext .ts .",
"test": "jest --coverage=false --useStderr --verbose",
"test:watch": "jest --watchAll --coverage=false --useStderr --verbose"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/preset-env": "^7.15.4",
"@babel/preset-typescript": "^7.15.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^27.0.1",
"@types/ora": "^3.2.0",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^27.1.0",
"prettier": "2.3.2",
"ts-jest": "^27.0.5",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.11.0",
"tscpaths": "^0.0.9",
"typescript": "^4.4.2",
"xsura": "^0.0.2"
},
"bin": {
"xsura": "./dist/index.js"
},
"dependencies": {
"axios": "^0.21.4",
"graphql": "^15.5.3",
"graphql-tag": "^2.12.5",
"lodash": "^4.17.21",
"ora": "5.4.1",
"yargs": "^17.1.1"
}
}