-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "nodejs-mvc-example",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.22.10",
"@babel/preset-env": "7.22.10",
"@babel/preset-typescript": "7.22.5",
"@types/bcrypt": "5.0.0",
"@types/ejs": "3.1.2",
"@types/express": "4.17.17",
"@types/jest": "29.5.3",
"@types/jsonwebtoken": "9.0.2",
"@types/lodash": "4.14.197",
"@types/morgan": "1.9.4",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-jest": "29.6.2",
"eslint": "8.47.0",
"eslint-plugin-import": "2.28.1",
"jest": "29.6.2",
"nodemon": "3.0.1",
"supertest": "6.3.3"
},
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^16.0.0",
"ejs": "^3.1.6",
"express": "^4.17.3",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^6.2.10",
"morgan": "^1.10.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"scripts": {
"prestart": "yarn tsc",
"start": "NODE_ENV=production && node build/index.js",
"dev": "nodemon",
"test": "jest --passWithNoTests --verbose",
"test:e2e": "jest --config ./e2e/jest.config.json --detectOpenHandles --watchAll --runInBand --verbose"
}
}