-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 940 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
35
36
37
38
39
40
41
{
"name": "vending-machine",
"version": "1.0.0",
"description": "Software for vending machine. Take home challenge",
"main": "dist/index.js",
"keywords": [
"mongodb",
"typescript",
"express",
"atlas"
],
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "ts-node-dev --respawn --transpile-only src/index.ts",
"test-start": "ts-node src/index.ts",
"test": "jest",
"format": "prettier . --write"
},
"dependencies": {
"@types/jest": "^29.0.0",
"axios": "^0.27.2",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"mongodb": "^4.9.1",
"supertest": "^6.2.4",
"ts-jest": "^29.0.2",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.4.7",
"jest": "^29.0.3",
"prettier": "^2.3.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.3.5"
},
"repository": {
"type": "git"
}
}