generated from TylerGarlick/template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.61 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
{
"name": "template-typescript",
"version": "0.0.1",
"description": "template-typescript",
"main": "dist/index.js",
"typings": "dist/index.d.js",
"scripts": {
"postinstall": "npx typesync || :",
"start": "npx ts-node ./src",
"start:dev": "npx ts-node-dev ./src",
"test": "npx jest",
"test:watch": "npx jest --watchAll",
"prebuild": "rm -rf dist",
"build": "npx tsc",
"lint": "npx eslint .",
"npm:publish": "npx np",
"npm:dependencies:update": "npx ncu -ua",
"docker:build": "docker build . -t typescript-template",
"docker:run": "docker run -p 4000:4000 typescript-template"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TylerGarlick/typescript-template.git"
},
"keywords": [
""
],
"author": {
"name": "Tyler Garlick",
"url": "https://github.com/tylergarlick"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/eslint": "^8.4.2",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@types/prettier": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.0",
"np": "^7.6.1",
"npm-check-updates": "^13.0.3",
"prettier": "^2.6.2",
"release-it": "^15.0.0",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.7.2",
"typesync": "^0.9.1"
},
"dependencies": {
"eslint-plugin-import": "^2.26.0"
}
}