-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "@imin/app-utils",
"version": "0.0.0",
"description": "Core functionality for imin apps",
"main": "src/index.js",
"types": "built-types/index.d.ts",
"bin": {
"db-migrate-up": "./src/cli/db-migrate-up.js",
"db-migrate-down": "./src/cli/db-migrate-down.js"
},
"scripts": {
"build": "tsc",
"test": "tsc",
"prepare": "npm run snyk-protect",
"snyk-protect": "snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imin-ltd/app-utils.git"
},
"author": "Civaram Sivakumaran <civ.sivakumaran@gmail.com> (https://github.com/civsiv), Luke Winship <luke.winship@gmail.com> (https://github.com/lukehesluke)",
"license": "MIT",
"bugs": {
"url": "https://github.com/imin-ltd/app-utils/issues"
},
"homepage": "https://github.com/imin-ltd/app-utils#readme",
"devDependencies": {
"@types/circular-json": "^0.4.0",
"@types/express": "^4.17.9",
"@types/lodash": "^4.14.167",
"@types/node": "^14.14.19",
"@types/pg": "^7.14.7",
"axios": "^0.25.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@imin/shared-data-types": "github:imin-ltd/shared-data-types#2d470a5",
"@imin/speck": "github:imin-ltd/speck#1c05dac",
"@snyk/protect": "^1.1232.0",
"@types/ramda": "^0.28.15",
"circular-json": "^0.5.9",
"db-migrate": "^0.11.14",
"db-migrate-pg": "^1.2.2",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"lodash": "^4.17.21",
"p-memoize": "^4.0.1",
"pg": "^8.5.1",
"ramda": "^0.28.0",
"snyk": "^1.1232.0",
"winston": "^3.10.0"
}
}