-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.35 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
{
"name": "surf",
"version": "1.0.0",
"description": "Study of api wih typescript",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "tsnd --respawn 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",
"test:unit": "jest",
"style:check": "prettier --check src/**/*.ts test/**/*.ts",
"style:fix": "prettier --write 'src/**/*.ts' 'test/**/*.ts'"
},
"author": "Tiago Andre",
"license": "ISC",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/module-alias": "^2.0.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^14.14.22",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"jest": "^27.0.6",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node-dev": "^1.1.8",
"typescript": "^4.1.3"
},
"dependencies": {
"@overnightjs/core": "^1.7.6",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"module-alias": "^2.2.2",
"mongoose": "^5.13.7"
}
}