-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 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
{
"name": "url_shortener_with_typeorm",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai-http": "^4.2.0",
"@types/express": "^4.17.8",
"@types/lodash": "^4.14.161",
"@types/mocha": "^8.0.3",
"@types/node": "^8.0.29",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"ts-node": "3.3.0",
"typescript": "3.3.3333"
},
"dependencies": {
"argon2": "^0.27.0",
"body-parser": "^1.19.0",
"celebrate": "^13.0.2",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"event-dispatch": "^0.4.1",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"lodash": "^4.17.20",
"mailgun-js": "^0.22.0",
"method-override": "^3.0.0",
"mysql": "^2.14.1",
"reflect-metadata": "^0.1.10",
"typedi": "^0.8.0",
"typeorm": "0.2.25",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"scripts": {
"start": "ts-node src/app.ts",
"test": "NODE_ENV=test mocha -r ts-node/register --exit --timeout 80000 ./src/tests/**/*.test.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"coverage": "./node_modules/nyc/bin/nyc.js --reporter html npm test"
}
}