-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.98 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
{
"name": "shopping-cart",
"version": "1.0.0",
"description": "Shopping cart API",
"main": "index.js",
"scripts": {
"build": "npx prisma generate && tsc",
"start": "node ./dist/index.js",
"dev": "nodemon",
"test": "npx mocha --require ts-node/register test/**/*.ts",
"prod": "npm run build && npm run start",
"clean": "rm -rf node_modules coverage dist .nyc_output",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.3",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.32",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"prisma": "^5.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@prisma/client": "^4.16.2",
"@types/chai": "^4.3.6",
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash": "^4.14.199",
"@types/mocha": "^10.0.2",
"@types/sinon": "^10.0.19",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"chai": "^4.3.10",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.15.0",
"helmet": "^6.0.1",
"http-status": "^1.6.2",
"joi": "^17.8.4",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"morgan": "^1.10.0",
"nocache": "^3.0.4",
"nodemon": "^3.0.1",
"sinon": "^16.1.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"ts-mocha": "^10.0.0",
"yamljs": "^0.3.0"
}
}