-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.81 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
58
59
60
61
62
63
64
{
"name": "ts-scripting-boilerplate",
"version": "1.2.11",
"main": "build/src/main.js",
"types": "build/src/main.d.ts",
"keywords": [],
"description": "",
"homepage": "https://github.com/victor-develop/ts-scripting-boilerplate",
"repository": {
"repository": {
"type": "git",
"url": "https://github.com/victor-develop/ts-scripting-boilerplate"
}
},
"devDependencies": {
"@types/bunyan": "^1.8.7",
"@types/faker": "^5.5.7",
"@types/highland": "^2.12.13",
"@types/jest": "~26.0.20",
"@types/node": "~14.14.31",
"@typescript-eslint/eslint-plugin": "~4.16.1",
"@typescript-eslint/parser": "~4.16.1",
"eslint": "~7.21.0",
"eslint-config-prettier": "~8.1.0",
"eslint-plugin-jest": "~24.1.5",
"jest": "~26.6.3",
"nodemon": "^2.0.12",
"prettier": "~2.2.1",
"rimraf": "~3.0.2",
"ts-jest": "~26.5.2",
"ts-node": "^10.1.0",
"tsutils": "~3.20.0",
"typescript": "~4.2.2"
},
"scripts": {
"d": "nodemon --exec ts-node",
"repl": "npm run d -- --files src/repl/index.ts",
"dev": "nodemon --exec ts-node --files src/main.ts",
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepublish": "npm run test && npm run lint && npm run build"
},
"author": "Victor Zhou",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.21.4",
"bunyan": "^1.8.15",
"chalk": "^4.1.1",
"dotenv": "^10.0.0",
"faker": "^5.5.3",
"fast-safe-stringify": "^2.0.8",
"highland": "^2.13.5",
"openapi-client-axios": "^3.14.0",
"tslib": "~2.1.0"
},
"volta": {
"node": "14.16.0"
}
}