forked from ulixee/secret-agent
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 3.69 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
{
"name": "@secret-agent/monorepo",
"version": "1.0.0-alpha.11",
"private": true,
"description": "The Web Browser Built for Scraping",
"scripts": {
"start:website": "yarn workspace @secret-agent/website start",
"bump-version": "lerna version prerelease --no-push --conventional-commits",
"build": "yarn tsc && yarn workspace @secret-agent/replay-app 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: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:build": "copyfiles \"testing/*/**\" \"yarn.lock\" \"mitm-socket/dist/*\" -a build && shx cp package.build.json build/package.json",
"copy:dist": "copyfiles \"mitm-socket/lib/*\" -e \"mitm-socket/dist\" \"**/.gitignore\" \"**/.npmignore\" build-dist",
"tsc": "tsc -b tsconfig.json && yarn copy:build && node prepare-build.js && yarn workspace @secret-agent/replay-app build:backend",
"watch": "tsc-watch -b -w tsconfig.json --onSuccess \"yarn workspace @secret-agent/replay-app build:backend-paths\"",
"watch:dist": "tsc -b -w tsconfig.dist.json",
"clean": "tsc -b --clean tsconfig.json && yarn workspace @secret-agent/replay-app 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": ">=12.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/jest": "^26.0.10",
"@types/node": "^12.7.11",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"copyfiles": "^2.3.0",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.2.5",
"jest": "^26.4.2",
"jest-environment-node": "^26.3.0",
"jest-summary-reporter": "^0.0.2",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"shx": "^0.3.2",
"source-map-support": "^0.5.16",
"tsc-watch": "^4.2.9",
"typescript": "~3.8.3"
},
"workspaces": {
"packages": [
"client",
"core",
"core-interfaces",
"emulators",
"emulator-plugins/*",
"full-client",
"humanoids",
"humanoid-plugins/*",
"injected-scripts",
"mitm",
"mitm-socket",
"core-server",
"remote-client",
"remote-interfaces",
"replay",
"replay-app",
"replay-app/frontend",
"session-state",
"testing",
"commons",
"website"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"resolutions": {
"remark-slug": "git://github.com/ulixee/remark-slug.git",
"tough-cookie": "^4.0.0"
}
}