generated from Moonpig/tech-test-node-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 906 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": "moonpig-tech-test-node-backend",
"version": "0.1.0",
"description": "Mooonpig Node Backend Technical Test",
"main": "index.js",
"repository": "https://github.com/Moonpig/tech-test-node-backend",
"author": "Moonpig",
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"@types/express": "^4.17.18",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.2",
"@types/supertest": "^2.0.14",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "*"
},
"dependencies": {
"axios": "^1.5.1",
"express": "^4.17.1"
},
"scripts": {
"format": "prettier --write './**/*.{js,ts,json,md}'",
"dev": "nodemon src/index.ts",
"test": "jest ./*/unit/",
"test:e2e": "jest ./*/e2e/"
}
}