-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.61 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
{
"name": "project-pepper",
"version": "1.0.0",
"description": "We'll get back to this",
"main": "index.js",
"directories": {
"test": "tests"
},
"dependencies": {
"@prisma/client": "^4.11.0",
"cors": "^2.8.5",
"mime-types": "^2.1.35",
"redis": "^2.8.0",
"sinon": "^7.5.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"util.promisify": "^1.1.1",
"utils-merge": "^1.0.1",
"express": "^4.18.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/node": "^18.15.3",
"@types/redis": "^4.0.11",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.1",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"prisma": "^4.11.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"scripts": {
"test": "mocha",
"dev": "nodemon ./src/server.ts",
"build": "npx tsc",
"start": "nodemon ./dist/server.js",
"lint": "eslint ./src/*/**.ts",
"fix-lint": "eslint ./src/*/**.ts --fix"
},
"prisma": {
"seed": "ts-node ./src/prisma/seed/seed.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Innocent9712/project-pepper.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Innocent9712/project-pepper/issues"
},
"homepage": "https://github.com/Innocent9712/project-pepper#readme"
}