-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "ts-api",
"version": "1.0.0",
"description": "Typescript + Node JS API",
"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",
"test": "echo \"Error: no test specified\" && exit 1",
"test:functional": "jest --projects ./test --runInBand"
},
"keywords": [
"nodejs",
"typescript",
"api"
],
"author": "Roque Costa",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^29.0.0",
"@types/module-alias": "^2.0.1",
"@types/node": "^18.7.14",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"jest": "^28.0.0",
"module-alias": "^2.2.2",
"supertest": "^6.2.4",
"ts-jest": "^28.0.8",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.2"
},
"dependencies": {
"@overnightjs/core": "^1.7.6",
"body-parser": "^1.20.0",
"express": "^4.18.1"
}
}