-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.66 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.js-TypeScript-API",
"version": "1.0.0",
"description": "Typescript Node.js API",
"main": "src/index.js",
"scripts": {
"build": "tsc",
"check": "npm-check -s -u",
"start": "npm run build && node dist/src/index.js",
"start:dev": "ts-node-dev src/index.ts",
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "eslint ./src ./test --ext .ts --fix",
"test:functional": "jest --projects ./test --runInBand --watch",
"test:unit": "jest --no-cache --watch",
"style:check": "prettier --check src/**/*.ts test/**/*.ts",
"style:fix": "prettier --write src/**/*.ts test/**/*.ts"
},
"keywords": [
"node",
"nodejs",
"typescript",
"api"
],
"author": "Yan Almeida Garcia",
"license": "ISC",
"git repository": "https://github.com/keys8410/node.js-ts.learning",
"devDependencies": {
"@types/config": "0.0.37",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.19",
"@types/module-alias": "^2.0.0",
"@types/mongoose": "^5.10.2",
"@types/node": "^14.14.13",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"config": "^3.3.3",
"eslint": "^7.15.0",
"git-commit-msg-linter": "^3.0.0",
"jest": "^26.6.3",
"npm-check": "^5.9.2",
"prettier": "^2.2.1",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@overnightjs/core": "^1.7.5",
"@types/axios": "^0.14.0",
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"module-alias": "^2.2.2",
"mongoose": "^5.11.7"
}
}