-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.12 KB
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
{
"name": "@officehours/coding-challenge-backend",
"version": "0.0.0",
"private": true,
"main": "dist/scaffolding/index.js",
"source": "src/scaffolding/index.ts",
"types": "dist/scaffolding/index.d.ts",
"scripts": {
"build": "tsc && tsc-alias",
"clean": "rm -rf dist",
"dev": "tsc-watch --onSuccess \"npm run _dev.exec\"",
"prettier.write": "prettier --write src",
"start": "node dist/scaffolding/index.js",
"test": "TZ=UTC jest --runInBand",
"test.watch": "npm run test --watch",
"type-check": "tsc --noEmit",
"_dev.exec": "tsc-alias && node --require source-map-support/register dist/scaffolding/index.js"
},
"devDependencies": {
"@jest/globals": "^29.6.4",
"@types/express": "^4.17.21",
"@types/uuid": "^10.0.0",
"eslint": "^8.36.0",
"jest": "^29.6.4",
"prettier": "^3.3.3",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.0",
"tsc-alias": "^1.8.5",
"tsc-watch": "^6.0.0",
"typescript": "^5.4.3"
},
"dependencies": {
"express": "^4.19.2",
"mongodb": "^6.8.0",
"mongodb-memory-server": "^10.0.0",
"uuid": "^10.0.0"
}
}