Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/package.json
1028 views
1
{
2
"name": "@secret-agent/monorepo",
3
"private": true,
4
"description": "The Web Browser Built for Scraping",
5
"scripts": {
6
"start:website": "yarn workspace @secret-agent/website start",
7
"bump-version": "lerna version --conventional-commits --exact --force-publish",
8
"build": "yarn tsc && yarn workspace @secret-agent/replay build:frontend && cd build && yarn",
9
"build:dist": "shx rm -rf build-dist && tsc -b tsconfig.dist.json && yarn copy:dist && node prepare-dist.js && shx cp package.dist.json build-dist/package.json",
10
"build:dist-local": "yarn build:dist && yarn workspace @secret-agent/replay build:dist-local && cd build-dist && SA_REBUILD_MITM_SOCKET=1 yarn",
11
"build:docker": "yarn build:dist && docker build -t secret-agent .",
12
"build:ci": "yarn tsc && cd build && yarn install",
13
"copy:node_modules": "shx cp -r node_modules \"build/node_modules\"",
14
"copy:dist": "cross-env OUT_DIR=build-dist node copyfiles.js",
15
"copy:build": "cross-env OUT_DIR=build node copyfiles.js",
16
"tsc": "tsc -b tsconfig.json && yarn copy:build && node prepare-build.js && yarn workspace @secret-agent/replay build:backend",
17
"watch": "tsc-watch -b -w tsconfig.json --onSuccess \"yarn workspace @secret-agent/replay build:backend-paths\"",
18
"watch:dist": "tsc -b -w tsconfig.dist.json",
19
"clean": "tsc -b --clean tsconfig.json && yarn workspace @secret-agent/replay clean",
20
"test": "yarn copy:build && cd build && yarn test",
21
"lint": "eslint --cache ./"
22
},
23
"repository": "[email protected]:ulixee/secret-agent.git",
24
"author": "Data Liberation Foundation",
25
"contributors": [
26
"Caleb Clark",
27
"Blake Byrnes"
28
],
29
"license": "MIT",
30
"bugs": {
31
"url": "https://github.com/ulixee/secret-agent/issues"
32
},
33
"homepage": "https://secretagent.dev",
34
"engines": {
35
"node": ">=13.2.0"
36
},
37
"husky": {
38
"hooks": {
39
"pre-commit": "lint-staged",
40
"pre-push": "npm test",
41
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
42
}
43
},
44
"devDependencies": {
45
"@commitlint/cli": "^12.0.1",
46
"@commitlint/config-conventional": "^12.0.1",
47
"@types/jest": "^26.0.20",
48
"@types/node": "^13.13.34",
49
"@typescript-eslint/eslint-plugin": "^4.14.0",
50
"@typescript-eslint/parser": "^4.17.0",
51
"copyfiles": "^2.4.1",
52
"cross-env": "^7.0.3",
53
"eslint": "^7.21.0",
54
"eslint-config-airbnb-typescript": "^12.0.0",
55
"eslint-config-prettier": "^8.1.0",
56
"eslint-import-resolver-typescript": "^2.4.0",
57
"eslint-plugin-eslint-comments": "^3.2.0",
58
"eslint-plugin-import": "^2.22.1",
59
"eslint-plugin-jest": "^24.2.1",
60
"eslint-plugin-jsx-a11y": "^6.4.1",
61
"eslint-plugin-monorepo-cop": "^1.0.2",
62
"eslint-plugin-prettier": "^3.3.1",
63
"eslint-plugin-promise": "^4.3.1",
64
"eslint-plugin-react": "^7.22.0",
65
"eslint-plugin-react-hooks": "^4.2.0",
66
"husky": "^4.3.0",
67
"jest": "^26.6.3",
68
"jest-environment-node": "^26.6.2",
69
"jest-summary-reporter": "^0.0.2",
70
"lerna": "^4.0.0",
71
"lint-staged": "^10.5.2",
72
"prettier": "^2.2.1",
73
"pretty-quick": "^3.1.0",
74
"shx": "^0.3.3",
75
"tsc-watch": "^4.2.9",
76
"typescript": "~4.1.2"
77
},
78
"workspaces": {
79
"packages": [
80
"client",
81
"core",
82
"interfaces",
83
"plugin-utils",
84
"plugins/*",
85
"full-client",
86
"mitm",
87
"mitm-socket",
88
"puppet",
89
"puppet-chrome",
90
"replay",
91
"replay/frontend",
92
"testing",
93
"commons",
94
"website"
95
]
96
},
97
"lint-staged": {
98
"*.ts": [
99
"eslint --fix"
100
],
101
"*.json": [
102
"prettier --write"
103
]
104
},
105
"resolutions": {
106
"remark-slug": "https://github.com/ulixee/remark-slug.git",
107
"tough-cookie": "^4.0.0"
108
},
109
"version": "0.0.0"
110
}
111
112