-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "01_desafio-ignite",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --transpile-only --ignore-watch node_modules src/app.ts",
"typeorm": "ts-node-dev node_modules/typeorm/cli.js",
"test": "NODE_ENV=test jest -i",
"test:staged": "jest"
},
"repository": "https://github.com/fempyrean/01_desafio-ignite.git",
"author": "Lucas Sousa <frempyrean@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.32",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.0.0",
"eslint": "^7.21.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"git-commit-msg-linter": "^3.0.0",
"husky": "^5.1.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"supertest": "^6.1.3",
"ts-jest": "^26.5.3",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"sqlite3": "^5.0.2",
"typeorm": "^0.2.31",
"uuid": "^8.3.2"
}
}