-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.46 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@onesy/aws",
"version": "1.0.0",
"description": "AWS utils",
"repository": "https://github.com/onesy-me/aws.git",
"author": "Lazar <lazareric2@gmail.com>",
"license": "MIT",
"private": false,
"main": "./src/index.ts",
"keywords": [
"aws",
"aws-s3",
"aws-sdk",
"aws-sdk-javascript",
"backend",
"back-end",
"web",
"javascript",
"js",
"typescript",
"express",
"expressjs",
"nodejs",
"node",
"library",
"onesy",
"utils"
],
"scripts": {
"prebuild": "rimraf build",
"build": "node utils/js/build.js",
"release": "yarn build && yarn version --patch --no-git-tag-version && yarn build && cd ./build && npm publish",
"release-pure": "yarn build && yarn build && cd ./build && npm publish",
"lint": "tslint -c tslint.json -p tsconfig.json",
"type": "tsc --noEmit -p tsconfig.json",
"cov": "cross-env NODE_ENV=test onesy-test",
"test": "yarn lint && yarn type && yarn build && yarn cov",
"docker": "docker-compose -p 'onesy' up -d",
"aws": "cross-env AWS_ACCESS_KEY_ID=onesy AWS_SECRET_ACCESS_KEY=onesy aws s3 mb s3://onesy --endpoint-url http://localhost:4566",
"aws-test": "cross-env AWS_ACCESS_KEY_ID=onesy AWS_SECRET_ACCESS_KEY=onesy aws s3 mb s3://onesy-test --endpoint-url http://localhost:7566",
"postdocker": "sleep 4 && yarn aws || echo '' && yarn aws-test || echo ''"
},
"peerDependencies": {
"@aws-sdk/client-s3": "^3.350.0"
},
"dependencies": {
"@onesy/date": "^1.0.0",
"@onesy/errors": "^1.0.0",
"@onesy/log": "^1.0.0",
"@onesy/utils": "^1.0.0",
"@babel/runtime": "^7.18.3"
},
"devDependencies": {
"@onesy/models": "^1.0.0",
"@onesy/test": "^1.0.0",
"@aws-sdk/client-s3": "^3.350.0",
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/express": "^4.17.13",
"@types/node": "^18.0.4",
"aws-sdk-client-mock": "^2.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"fast-glob": "^3.2.7",
"fs-extra": "^10.0.0",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.5.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"sideEffects": false,
"engines": {
"node": ">=12.0.0",
"yarn": ">=1.22"
}
}