-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.38 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.38 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
{
"name": "docs",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:JupiterOne/docs.git",
"author": "J1Dev <j1dev@jupiterone.com>",
"license": "NONE",
"private": true,
"sideEffects": false,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint --ext .ts,.js .",
"test": "./bin/run-tests.local.sh",
"test:unit": "./bin/run-tests.unit.sh",
"bundle": "cd packages/docs; yarn compile",
"deploy": "yarn bundle && yarn jupiterone-manual-deploy -t jupiterone-dev",
"updateIntegrations": "cd packages/integrations-handling; yarn getIntegrations",
"start": "cd packages/docs; yarn publishDiffs $TOKEN $targetVanillaEnv",
"replaceIntegrationDocs": "cd packages/docs; yarn replaceIntegrationDocs $TOKEN $targetVanillaEnv"
},
"dependencies": {
"@types/node": "^16.11.7",
"axios": "^0.24.0",
"lodash": "^4.17.21",
"rxjs": "^7.4.0",
"typescript": "^4.4.4"
},
"devDependencies": {
"@jupiterone/dev-tools": "^8.2.0",
"@jupiterone/platform-sdk-logging": "^2.1.1",
"@jupiterone/platform-sdk-test-tools": "^1.1.0",
"@jupiterone/typescript-tools": "^15.0.0",
"@types/lodash": "^4.14.176",
"@types/supertest": "^2.0.11",
"lerna": "^4.0.0",
"lerna-update-wizard": "^0.17.8",
"simple-git": "^2.47.0",
"supertest": "^6.1.6",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8"
}
}