-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "follow-wave",
"version": "1.0.0",
"description": "Forecast API with NodeJS and Typescript",
"main": "index.js",
"author": "Maykon Morais <maykon.estudos@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "yarn build && node dist/src/index.js",
"dev": "ts-node-dev 'src/index.ts'",
"test:unit": "jest",
"style:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts'",
"style:fix": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "eslint ./src ./test --ext .ts --fix",
"test:functional": "jest --projects ./test --runInBand"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@types/module-alias": "^2.0.0",
"@types/node": "^15.12.5",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-node-dev": "^1.1.7",
"typescript": "^4.3.4"
},
"dependencies": {
"@overnightjs/core": "1.7.4",
"@types/config": "^0.0.39",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"config": "^3.3.6",
"express": "^4.17.1",
"module-alias": "^2.2.2"
}
}