-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.69 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": "tcdl-paper-service",
"version": "1.0.0",
"main": "index.js",
"author": "Ygor Galeno <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"test:unit": "npm test -- --testMatch **/*.spec.ts --silent",
"test:coverage": "npm test -- --coverage --runInBand",
"start:dev": "tsnd --respawn --files -r tsconfig-paths/register -P tsconfig.json src/server/server.ts",
"typeormcli": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config src/server/ormconfig.ts"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/joi": "^14.3.4",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.11.5",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"git-commit-msg-linter": "^3.0.0",
"husky": "^4.3.0",
"jest": "^26.5.2",
"lint-staged": "^10.4.0",
"nodemon": "^2.0.4",
"supertest": "^5.0.0",
"ts-jest": "^26.4.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/uuid": "^8.3.0",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"date-fns": "^2.16.1",
"date-fns-tz": "^1.0.12",
"express": "^4.17.1",
"fast-glob": "^3.2.4",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.4.1",
"reflect-metadata": "^0.1.13",
"ts-node-dev": "^1.0.0-pre.64",
"typeorm": "^0.2.28",
"uuid": "^8.3.1"
}
}