-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "file-sharing-api",
"version": "1.0.0",
"description": "A simple API that allows sharing of files via public and private keys",
"main": "index.js",
"scripts": {
"prestart": "cp .env.example .env",
"start": "node -r ts-node/register src/app.ts",
"test": "./test.sh",
"integration-tests": "jest integration-tests/integration.test.ts",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/busboy": "^1.5.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.10",
"@types/sinon": "^10.0.13",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"prisma": "^4.12.0",
"sinon": "^15.0.3",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@prisma/client": "^4.12.0",
"busboy": "^1.6.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"stream-size": "^0.0.6"
}
}