-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (67 loc) · 2.05 KB
/
package.json
File metadata and controls
68 lines (67 loc) · 2.05 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
58
59
60
61
62
63
64
65
66
67
{
"name": "jaco",
"version": "1.0.0",
"engines": {
"node": ">=14.18.1"
},
"private": true,
"repository": "git@github.com:plimble/jaco.git",
"author": "witooh <witoo@plimble.com>",
"license": "MIT",
"scripts": {
"eslint": "eslint",
"build": "rm -rf dist && nx run-many --all --target=build",
"deploy:patch": "nx run core:version --releaseAs=patch && yarn build && nx run-many --all --target=deploy --parallel=1",
"deploy:minor": "nx run core:version --releaseAs=minor && yarn build && nx run-many --all --target=deploy --parallel=1",
"deploy:major": "nx run core:version --releaseAs=major && yarn build && nx run-many --all --target=deploy --parallel=1"
},
"dependencies": {
"@sentry/node": "^7.5.1",
"abort-controller": "^3.0.0",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"change-case": "^4.1.2",
"class-transformer": "^0.5.1",
"cuid": "^2.1.8",
"dayjs": "^1.11.3",
"fast-copy": "^2.1.3",
"fast-equals": "^4.0.1",
"glob": "^8.0.3",
"immer": "^9.0.15",
"node-fetch": "^3.2.6",
"reflect-metadata": "^0.1.13",
"tslib": "^2.4.0",
"tsyringe": "^4.7.0",
"url-router": "^13.0.0"
},
"devDependencies": {
"@jscutlery/semver": "^2.20.1",
"@nrwl/cli": "14.4.2",
"@nrwl/eslint-plugin-nx": "14.4.2",
"@nrwl/jest": "14.4.2",
"@nrwl/js": "14.4.2",
"@nrwl/linter": "14.4.2",
"@nrwl/node": "14.4.2",
"@nrwl/nx-cloud": "14.2.0",
"@nrwl/workspace": "14.4.2",
"@types/aws-lambda": "^8.10.101",
"@types/jest": "27.4.1",
"@types/node": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"aws-sdk": "2.1055.0",
"eslint": "8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "27.5.1",
"ngx-deploy-npm": "^4.1.1",
"nx": "14.4.2",
"prettier": "2.7.1",
"ts-jest": "27.1.4",
"ts-loader": "^9.2.8",
"ts-node": "10.8.2",
"typescript": "4.7.4",
"webpack": "^5.73.0"
}
}