generated from raulanatol/template-node-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.4 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
{
"name": "template-node-ts",
"version": "1.0.0",
"description": "📓 Template repo with node + ts",
"keywords": [],
"homepage": "https://github.com/raulanatol/template-node-ts#readme",
"bugs": {
"url": "https://github.com/raulanatol/template-node-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raulanatol/template-node-ts.git"
},
"license": "ISC",
"author": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"clean": "shx rm -rf dist lib",
"dev": "nodemon src/server.ts",
"lint": "eslint --max-warnings 0 . --ext .ts",
"test": "jest",
"test-ci": "CI=true jest"
},
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"/dist/"
]
},
"dependencies": {
"express": "^4.17.1",
"mongodb": "^3.6.3",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@cowcoders/eslint-config": "^1.0.3",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/mongodb": "^3.5.33",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"shx": "^0.3.2",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}