-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.5 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.5 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@ohoareau/microlib",
"version": "0.28.4",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"preversion": "yarn test",
"version": "yarn --silent build && git add -A .",
"postversion": "git push && git push --tags",
"build": "tsc",
"test": "jest --config jest.config.js"
},
"dependencies": {
"@genstackio/auth-jwt": "^0.1.3",
"@ohoareau/aws": "^0.3.15",
"@ohoareau/build-package": "^0.2.1",
"@ohoareau/errors": "^0.2.0"
},
"peerDependencies": {
"bcryptjs": "^2.4.3",
"currency-codes": "^2.1.0",
"date-fns": "^2.29.3",
"jsonwebtoken": "^8.5.1",
"mozjexl": "^1.1.6",
"node-fetch": "^2.6.7",
"uuid": "^8.3.2"
},
"devDependencies": {
"@ohoareau/migrate": "^0.3.1",
"@types/jest": "^28.1.7",
"@types/node": "^16.11.51",
"aws-sdk": "^2.1199.0",
"bcryptjs": "^2.4.3",
"currency-codes": "^2.1.0",
"date-fns": "^2.29.3",
"dynamoose": "^1.11.1",
"graphql": "^14.7.0",
"jest": "^28.1.3",
"jsonwebtoken": "^8.5.1",
"mozjexl": "^1.1.6",
"node-fetch": "^2.6.7",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4",
"uuid": "^8.3.2"
}
}