-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "congenial-fiesta",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:jrquadros/congenial-fiesta.git",
"author": "jrquadros <jrmquadros@gmail.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/crypto-js": "^4.1.1",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.25",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"supertest": "^6.2.3",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"scripts": {
"ts:watch": "tsc --watch",
"lint": "eslint src/**/*.ts",
"prepare": "husky install",
"test": "NODE_ENV=test jest --passWithNoTests",
"test:watch": "NODE_ENV=test jest --watch",
"dev": "nodemon"
},
"dependencies": {
"@types/supertest": "^2.0.12",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.6",
"yup": "^0.32.11"
}
}