-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.56 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
89
90
91
92
93
{
"name": "coderscamp2020.project.fullstack-node-react.organizationapp",
"version": "1.0.0",
"description": "Organization Application - CodersCamp 2021 Node.js project",
"main": "./api/index.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"format": "prettier --write \"api/Src/**/*.js\" \"api/Src/**/*.ts\" \"api/Test/**/*.js\" \"api/Test/**/*.ts\"",
"start": "ts-node ./api/index.ts",
"start:dev": "npx nodemon ./api/index.ts",
"start:mail": "npx nodemon ./api/UnitImplementations/MailingServiceTest.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KrystianKjjk/CodersCamp2020.Project.FullStack-Node-React.OrganizationApp.git"
},
"keywords": [
"coderscamp",
"organization",
"node.js",
"typescript",
"frontend",
"backend",
"fullstack",
"api",
"rest",
"mongodb",
"database",
"nosql"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/KrystianKjjk/CodersCamp2020.Project.FullStack-Node-React.OrganizationApp/issues"
},
"homepage": "https://github.com/KrystianKjjk/CodersCamp2020.Project.FullStack-Node-React.OrganizationApp#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@testing-library/dom": "^7.29.4",
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.21",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.31",
"@types/nodemailer": "^6.4.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"parcel": "^1.12.4",
"prettier": "^2.2.1",
"sass": "^1.32.5",
"ts-jest": "^26.5.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": "(test|spec)\\.(jsx?|tsx?)$",
"coverageDirectory": "../Coverage",
"collectCoverageFrom": [
"./api/Src/Services/**"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"moduleNameMapper": {
"\\.(png)$": "jest-transform-stub"
},
"testEnvironment": "node"
},
"dependencies": {
"bcrypt": "^5.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"joi": "^17.4.0",
"joi-password-complexity": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"mongoose": "5.11.15",
"nodemailer": "^6.4.18",
"nodemailer-express-handlebars": "^4.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}