forked from imjpfeliciano/node-express-ts-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.62 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": "node-express-ts-eslint",
"version": "2.0.0",
"description": "Boilerplate to creates node.js API with ES6 Transpiler and airbnb rules configured to eslint. ",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node ./dist/index.js",
"precommit-msg": "echo 'Precommit checks...' && exit 0",
"test": "echo \"Error: no test specified\" && exit 0",
"start:dev": "ts-node-dev --respawn --pretty --transpile-only ./src/index.ts",
"lint": "ts-standard --fix"
},
"pre-commit": [
"precommit-msg",
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/imjpfeliciano/node-express-ts-eslint.git"
},
"author": "jperazafeliciano@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/imjpfeliciano/node-express-ts-eslint/issues"
},
"homepage": "https://github.com/imjpfeliciano/node-express-ts-eslint#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/helmet": "^4.0.0",
"@types/node": "^20.5.3",
"@types/swagger-ui-express": "^4.1.3",
"pre-commit": "^1.2.2",
"ts-node-dev": "^2.0.0",
"ts-standard": "^12.0.2",
"typescript": "^5.1.6"
},
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"node_modules/ts-standard/eslintrc.json"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off"
}
}
}