-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 KB
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
{
"name": "typescript-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "yarn 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",
"style:check": "prettier --check src/**/*.ts test/**/*.ts",
"style:fix": "prettier --write src/**/*.ts test/**/*.ts",
"test:functional": "jest --projects ./test --runInBand",
"test:unit": "jest"
},
"author": "Uhelliton Andrade",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/module-alias": "^2.0.0",
"@types/node": "^14.11.10",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"jest": "^26.5.3",
"prettier": "^2.2.1",
"supertest": "^5.0.0",
"ts-jest": "^26.4.1",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@overnightjs/core": "^1.7.5",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"module-alias": "^2.2.2"
}
}