-
-
Notifications
You must be signed in to change notification settings - Fork 164
/
package.json
132 lines (132 loc) · 5.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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"author": "",
"bugs": {
"url": "https://github.com/lunasec-io/lunasec/issues"
},
"description": "This monorepo holds the LunaSec SDKs, servers, and demo application.",
"devDependencies": {
"@jest/globals": "^29.4.1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"eslint": "8.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-comments": "^1.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-order": "^2.1.4",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-vue": "^8.2.0",
"graphqurl": "~1.0.1",
"husky": "^7.0.4",
"js-yaml": "^4.1.0",
"lerna": "^4.0.0",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "~4.5.2",
"uuid": "^8.3.2"
},
"dependenciesMeta": {
"@aws-cdk/aws-lambda-nodejs": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
}
},
"homepage": "https://github.com/lunasec-io/lunasec#readme",
"license": "Apache-2.0",
"name": "lunasec",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/lunasec-io/lunasec.git"
},
"scripts": {
"compile:bsl": "cd lunatrace/bsl && yarn run tsc -b tsconfig.build.json",
"lunasec": "node lunadefend/js/sdks/packages/cli/build/cli.js",
"license:check": "./tools/license-checker/run-license-check.sh check",
"license:fix": "./tools/license-checker/run-license-check.sh fix",
"license:install": "cd tools/license-checker && ./install-skywalking-eyes.sh",
"test:e2e:local": "cd lunadefend/js/demo-apps/packages/react-front-end && yarn run test:e2e",
"test:e2e:docker": "cd lunadefend/js/demo-apps/packages/react-front-end && yarn run test:e2e:docker",
"test:unit:tokenizer": "cd lunadefend/js/sdks/packages/tokenizer-sdk && yarn run test",
"test:unit:auth": "cd lunadefend/js/sdks/packages/browser-common && yarn run test",
"test:unit:js": "yarn test:unit:auth && yarn test:unit:tokenizer",
"test:unit:go": "cd lunadefend/go && go test -cover ./...",
"test:unit": "yarn test:unit:js && yarn test:unit:go",
"test:all": "yarn test:unit && yarn run test:e2e:local",
"lint:fix": "yarn run lint --fix",
"lint": "yarn run lint:basecommand .",
"lint:basecommand": "yarn run eslint --ext .js,.jsx,.ts,.tsx,.vue --quiet ./lunatrace",
"lint:lunatrace": "yarn run lint:basecommand ./lunatrace",
"version:release": "./tools/version-release.sh",
"compile:dev:infrastructure": "cd lunadefend/js/internal-infrastructure/s3-redirect-generator && yarn run compile",
"compile:dev:sdks": "cd lunadefend/js/sdks && yarn run compile:dev",
"compile:release:sdks": "cd lunadefend/js/sdks && yarn run compile:release",
"compile:release:services": "cd lunadefend/go && yarn run compile:release",
"compile:release:demos": "VERSION=$(yarn run --silent monorepo:version) lunadefend/js/docker/release.sh build",
"compile:release": "yarn run compile:release:sdks && yarn run compile:release:services && yarn run compile:release:demos",
"postinstall": "sh ./tools/postinstall.sh",
"publish:release:sdks": "lerna publish --no-verify-access -y from-package",
"publish:release:services": "cd go && yarn run publish:release",
"publish:release:demos": "VERSION=$(yarn run --silent monorepo:version) lunadefend/js/docker/release.sh publish",
"publish:release": "yarn run publish:release:sdks && yarn run publish:release:services && yarn run publish:release:demos",
"prepare": "yarn run husky install",
"monorepo:version": "yarn node -p 'require(\"./lerna.json\").version'",
"generate:lunatrace:backend": "cd lunatrace/bsl/backend && yarn generate",
"generate:lunatrace:frontend": "cd lunatrace/bsl/frontend && yarn generate",
"generate:ml:python": "cd lunatrace/bsl/ml/python && python -m grpc_tools.protoc -I../../proto --python_out=. --pyi_out=. --grpc_python_out=. ../../proto/langchain.proto",
"generate:go": "go generate ./...",
"generate": "yarn generate:go && yarn generate:ml:python && yarn generate:lunatrace:backend && yarn generate:lunatrace:frontend"
},
"engines": {
"node": "^16.0.0"
},
"version": "1.0.0",
"workspaces": {
"packages": [
"./go",
"./lunadefend/js/sdks/packages/*",
"./lunadefend/js/service/packages/*",
"./lunadefend/js/demo-apps/packages/*",
"./docs",
"./lunadefend/js/sdks",
"./lunatrace/bsl/backend",
"./lunadefend/js/internal-infrastructure/s3-redirect-generator",
"./lunadefend/js/internal-infrastructure/metrics-server-backend",
"./lunatrace/bsl/backend",
"./lunatrace/bsl/backend-cdk",
"./lunatrace/bsl/common",
"./lunatrace/bsl/logger",
"./lunatrace/bsl/frontend",
"./lunatrace/dev-cli",
"./lunatrace/npm-package-cli",
"./lunatrace/datadog-metrics-proxy"
]
},
"packageManager": "[email protected]",
"dependencies": {
"jest-environment-jsdom": "~28.0.2",
"jsonp": "~0.2.1",
"node-gyp": "~9.0.0"
},
"resolutions": {
"snyk-nodejs-lockfile-parser": "portal:/home/forrest/code/nodejs-lockfile-parser"
}
}