-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.24 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "e-store-backend",
"version": "1.0.0",
"description": "This is a backend app for online store.",
"main": "index.ts",
"compilerOptions": {
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
]
},
"_moduleAliases": {
"@configs": "src/configs",
"@constants": "src/constants",
"@entities": "src/entities",
"@utils": "src/utils",
"@shared": "src/api/shared"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status-codes": "^2.1.4",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongodb": "^3.6.2",
"reflect-metadata": "^0.1.13",
"typedi": "^0.8.0",
"typeorm": "^0.2.26",
"typeorm-typedi-extensions": "^0.2.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.1",
"@types/jest": "^26.0.14",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.11.2",
"@types/supertest": "^2.0.10",
"eslint": "^7.9.0",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"sinon": "^9.0.3",
"supertest": "^4.0.2",
"ts-jest": "^26.4.0",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"scripts": {
"dev": "NODE_ENV=development nodemon -w . --ext ts --exec ts-node index.ts",
"start": "ts-node index.ts",
"test": "NODE_ENV=test jest --forceExit --coverage --verbose --colors --detectOpenHandles",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noghanodedra/e-store-backend.git"
},
"keywords": [
"e-store",
"node",
"express",
"typescript",
"mongodb"
],
"author": "Noghan Odedra",
"license": "MIT",
"bugs": {
"url": "https://github.com/noghanodedra/e-store-backend/issues"
},
"homepage": "https://github.com/noghanodedra/e-store-backend#readme",
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}