forked from LockedUp-Coders/nostalgify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.23 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "ts-template",
"version": "1.0.0",
"description": "sample typescript template",
"main": "dist/server.js",
"scripts": {
"lint": "eslint ./src/**/*.ts --fix",
"build": "tsc",
"server": "nodemon",
"start": "node ./dist/server.js",
"test": "./node_modules/mocha/bin/mocha --sort --require ts-node/register --timeout 1000 --exit ./test/*.ts",
"coverage": "nyc --reporter=lcov ./node_modules/mocha/bin/mocha --sort --require ts-node/register --timeout 1000 --exit ./test/*.ts",
"codecov": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YashKumarVerma/typescript-template.git"
},
"keywords": [],
"author": "YashKumarVerma",
"license": "MIT",
"bugs": {
"url": "https://github.com/YashKumarVerma/typescript-template/issues"
},
"homepage": "https://github.com/YashKumarVerma/typescript-template#readme",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.11",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
"@types/mocha": "^7.0.2",
"@types/mongoose": "^5.7.24",
"@types/node": "^13.13.12",
"@types/passport": "^1.0.3",
"@types/validator": "^13.0.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"codecov": "^3.7.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"lcov-parse": "^1.0.0",
"mocha": "^7.1.2",
"nodemon": "^2.0.3",
"nyc": "^15.0.1",
"prettier": "^2.0.4"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bcryptjs": "^2.4.2",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"jsdoc": "^3.6.4",
"mongoose": "^5.9.18",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"ts-node": "^8.8.2",
"typescript": "^3.8.3",
"validator": "^13.0.0",
"winston": "^3.2.1"
}
}