-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 907 Bytes
/
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
{
"name": "template-node",
"version": "0.0.0",
"description": " NodeJS template using TypeScript, with Prettier and ESLint built in. ",
"main": "src/index.ts",
"repository": "[email protected]:DumbDogDiner/template-node.git",
"author": "SkyezerFox <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"start": "ts-node src",
"build": "eslint src/**/*.* && tsc -b",
"prod": "node dist",
"test": "jest",
"lint": "eslint src/**/*.*",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4",
"husky": "^6.0.0"
},
"dependencies": {
"dotenv": "^9.0.1"
}
}