-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·51 lines (51 loc) · 1.53 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
{
"name": "node-typescript-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "yarn build && node dist/src/index.js",
"start:local": "ts-node-dev 'src/index.ts'",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "eslint ./src ./test --ext .ts --fix",
"style:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts'",
"style:fix": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"test:unit": "jest",
"test:functional": "jest --projects ./test --forceExit --runInBand"
},
"keywords": [
"nodejs",
"typescript",
"api"
],
"repository": "https://github.com/lourencovitor/node-typescript-api.git",
"author": "Vitor Lourenço <vitor.brother17@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/config": "^0.0.37",
"@types/express": "^4.17.9",
"@types/jest": "^25.2.1",
"@types/module-alias": "^2.0.0",
"@types/node": "^13.13.2",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"jest": "^26.0.1",
"prettier": "^2.2.1",
"supertest": "^4.0.2",
"ts-jest": "^26.0.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"dependencies": {
"@overnightjs/core": "^1.7.5",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"config": "^3.3.3",
"express": "^4.17.1",
"module-alias": "^2.2.2"
}
}