-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.36 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
50
51
52
53
54
55
56
57
{
"name": "functions",
"version": "2.0.1",
"description": "Onify Functions",
"main": "app.js",
"type": "module",
"scripts": {
"start": "node app.js",
"dev": "nodemon --inspect=0.0.0.0:9229 app.js",
"test": "vitest",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onify/functions.git"
},
"keywords": [
"onify",
"functions"
],
"author": "Onify",
"license": "MIT",
"bugs": {
"url": "https://github.com/onify/functions/issues"
},
"homepage": "https://github.com/onify/functions#readme",
"dependencies": {
"axios": "^1.6.2",
"body-parser": "^1.20.2",
"deep-diff": "^1.0.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"joi": "^17.11.0",
"joi-to-swagger": "^6.2.0",
"lint-staged": "^15.2.2",
"moment": "^2.30.1",
"multer": "^1.4.5-lts.1",
"pino": "^8.17.2",
"pino-http": "^9.0.0",
"pino-pretty": "^10.3.1",
"prettier": "^3.2.5",
"swagger-ui-express": "^5.0.0",
"vitest": "^0.34.6",
"wait-on": "^7.2.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@onify/commitlint-config": "git+https://github.com/onify/commitlint-config.git",
"@types/express": "^4.17.18",
"husky": "^9.0.11",
"nodemon": "^3.0.1"
},
"imports": {
"#/*": "./src/*"
}
}