-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "node-typescript-api",
"version": "1.0.0",
"description": "Typescript Node.js API",
"main": "index.js",
"scripts": {
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "eslint ./src ./test --ext .ts --fix",
"test:e2e": "jest --projects ./test --runInBand",
"test:unit": "jest",
"style:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts'",
"style:fix": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"build": "tsc",
"start": "npm run build && node dist/src/index.js",
"dev": "ts-node-dev 'src/index.ts'"
},
"keywords": [
"nodejs",
"typescript",
"api"
],
"author": "Leonardo Camargo",
"license": "ISC",
"dependencies": {
"@overnightjs/core": "^1.7.4",
"axios": "^0.20.0",
"body-parser": "^1.19.0",
"config": "^3.3.1",
"express": "^4.17.1",
"module-alias": "^2.2.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/config": "0.0.36",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.10",
"@types/module-alias": "^2.0.0",
"@types/node": "^14.0.27",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.0",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^26.2.0",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "^3.9.7"
}
}