-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"name": "typescript-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 --transpile-only 'src/index.ts'",
"lint": "eslint ./src ./test --ext .ts",
"style:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts'",
"style:fix": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"lint:fix": "eslint ./src ./test --ext .ts --fix",
"test:functional": "jest --projects ./test --runInBand",
"test:unit": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enyasantos/node-typescript-api.git"
},
"keywords": [
"nodejs",
"typescript",
"api"
],
"author": "Enya Santos",
"license": "ISC",
"bugs": {
"url": "https://github.com/enyasantos/node-typescript-api/issues"
},
"homepage": "https://github.com/enyasantos/node-typescript-api#readme",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/module-alias": "^2.0.0",
"@types/node": "^14.14.28",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"ts-jest": "^26.5.1",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.5"
},
"dependencies": {
"@overnightjs/core": "^1.7.5",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"module-alias": "^2.2.2"
}
}