-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
42
43
44
45
46
47
48
49
{
"name": "nodejs-template",
"version": "1.0.0",
"description": "",
"exports": "./src/index.js",
"type": "module",
"scripts": {
"start": "node ./src/index.js",
"lint": "eslint",
"test": "MOCK_IMPORT_NESTED=\"true\" supertape -r mock-import/register ./test/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/firstmatecloud/guidelines-repo-example"
},
"author": "JochenWilms",
"license": "ISC",
"bugs": {
"url": "https://github.com/firstmatecloud/guidelines-repo-example/issues"
},
"homepage": "https://github.com/firstmatecloud/guidelines-repo-example#readme",
"dependencies": {
"axios": "^1.7.7",
"cls-hooked": "^4.2.2",
"cors": "^2.8.5",
"express": "5.0.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"mongodb": "^6.8.1",
"pino": "^9.4.0",
"pino-http": "^10.3.0",
"pino-pretty": "^11.2.2",
"query-to-mongo": "^0.12.0",
"validate": "^5.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@supertape/operator-stub": "^3.1.0",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lint-staged": "^11.2.6",
"mock-import": "^4.2.0",
"nodemon": "3.1.4",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"supertape": "^10.7.3"
}
}