-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 905 Bytes
/
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
{
"name": "fantastic-beer",
"version": "1.0.0",
"description": "Exercise for an interview",
"main": "src/index.ts",
"scripts": {
"start": "node ./dist/index.js",
"dev": "nodemon -e ts --exec \"npm run build && npm start\"",
"build": "rm -rf ./dist && tsc",
"test": "jest --coverage --testPathPattern=src/"
},
"author": "Edoardo Gabrielli",
"license": "ISC",
"dependencies": {
"@types/body-parser": "^1.19.2",
"body-parser": "^1.20.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"nodemon": "^2.0.20",
"pg": "^8.8.0",
"pg-promise": "^10.15.0"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"@types/pg": "^8.6.5",
"@types/supertest": "^2.0.12",
"jest": "^29.3.1",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}