-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.04 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
{
"name": "cape-js",
"version": "0.0.0",
"description": "The Cape Privacy JavaScript SDK",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna run clean",
"lerna": "lerna",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint . --ext .js,.ts",
"lint:fix": "yarn run lint:eslint -- --fix",
"lint:prettier": "npx prettier --check .",
"lint:prettier:fix": "npx prettier --write .",
"prepare": "husky install",
"publish": "yarn clean && yarn build && yarn test && lerna publish",
"publish:ci": "lerna publish from-git --yes --canary --preid next --force-publish=* --no-verify-access",
"test": "jest --coverage",
"test:ci": "jest --coverage --ci",
"type-check": "yarn workspaces run type-check",
"watch": "lerna run watch --parallel --stream"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@hyrious/esbuild-plugin-commonjs": "^0.2.1",
"@swc/core": "^1.2.203",
"@swc/jest": "^0.2.21",
"@types/jest": "^29.2.5",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"concurrently": "^7.2.1",
"esbuild": "^0.15.5",
"esbuild-plugin-alias": "^0.2.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.2.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-sort-export-all": "^1.2.2",
"husky": "^8.0.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^28.1.1",
"lerna": "^5.1.4",
"lint-staged": "^13.0.0",
"prettier": "2.8.4",
"rimraf": "^3.0.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"crypto-browserify": "^3.12.0"
}
}