-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
110 lines (110 loc) · 3.66 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
{
"name": "@secret-agent/monorepo",
"private": true,
"description": "The Web Browser Built for Scraping",
"scripts": {
"start:website": "yarn workspace @secret-agent/website start",
"bump-version": "lerna version --conventional-commits --exact --force-publish",
"build": "yarn tsc && yarn workspace @secret-agent/replay build:frontend && cd build && yarn",
"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",
"build:dist-local": "yarn build:dist && yarn workspace @secret-agent/replay build:dist-local && cd build-dist && SA_REBUILD_MITM_SOCKET=1 yarn",
"build:docker": "yarn build:dist && docker build -t secret-agent .",
"build:ci": "yarn tsc && cd build && yarn install",
"copy:node_modules": "shx cp -r node_modules \"build/node_modules\"",
"copy:dist": "cross-env OUT_DIR=build-dist node copyfiles.js",
"copy:build": "cross-env OUT_DIR=build node copyfiles.js",
"tsc": "tsc -b tsconfig.json && yarn copy:build && node prepare-build.js && yarn workspace @secret-agent/replay build:backend",
"watch": "tsc-watch -b -w tsconfig.json --onSuccess \"yarn workspace @secret-agent/replay build:backend-paths\"",
"watch:dist": "tsc -b -w tsconfig.dist.json",
"clean": "tsc -b --clean tsconfig.json && yarn workspace @secret-agent/replay clean",
"test": "yarn copy:build && cd build && yarn test",
"lint": "eslint --cache ./"
},
"repository": "[email protected]:ulixee/secret-agent.git",
"author": "Data Liberation Foundation",
"contributors": [
"Caleb Clark",
"Blake Byrnes"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ulixee/secret-agent/issues"
},
"homepage": "https://secretagent.dev",
"engines": {
"node": ">=13.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/jest": "^26.0.20",
"@types/node": "^13.13.34",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.17.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^7.21.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.2.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-monorepo-cop": "^1.0.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"jest-summary-reporter": "^0.0.2",
"lerna": "^4.0.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"shx": "^0.3.3",
"tsc-watch": "^4.2.9",
"typescript": "~4.1.2"
},
"workspaces": {
"packages": [
"client",
"core",
"interfaces",
"plugin-utils",
"plugins/*",
"full-client",
"mitm",
"mitm-socket",
"puppet",
"puppet-chrome",
"replay",
"replay/frontend",
"testing",
"commons",
"website"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"resolutions": {
"remark-slug": "https://github.com/ulixee/remark-slug.git",
"tough-cookie": "^4.0.0"
},
"version": "0.0.0"
}