forked from WebSolutions2k21/CodersCamp2021.Project.Node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 KB
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
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/WebSolutions2k21/CodersCamp2021.Project.Node.git",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node ./dist/src/server.js",
"dev": "set NODE_ENV=development && nodemon ./src/server.ts",
"dev-prod": "set NODE_ENV=production && nodemon ./src/server.ts",
"dev:t": "ts-node ./src/server.ts",
"test": "jest --watchAll --detectOpenHandles --verbose",
"test:c": "jest --watchAll --detectOpenHandles --verbose --coverage"
},
"dependencies": {
"bcrypt": "^5.0.0",
"config": "^3.3.7",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"envalid": "^7.0.0",
"express": "^4.17.1",
"http-status-codes": "^2.1.4",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "5.11.15",
"nodemailer": "^6.7.2",
"production": "^0.0.2",
"supertest": "^6.2.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/config": "^0.0.38",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.179",
"@types/nodemailer": "^6.4.0",
"@types/supertest": "^2.0.11",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}