forked from segmentio/action-destinations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.45 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
{
"name": "action-destinations",
"private": true,
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
]
},
"engines": {
"node": ">=12"
},
"scripts": {
"browser": "yarn workspace @segment/browser-destinations",
"cloud": "yarn workspace @segment/action-destinations",
"cli": "yarn workspace @segment/actions-cli",
"cli-internal": "yarn workspace @segment/actions-cli-internal",
"core": "yarn workspace @segment/actions-core",
"bootstrap": "lerna bootstrap",
"build": "./bin/run generate:types && lerna run build --stream --ignore @segment/actions-cli-internal",
"types": "./bin/run generate:types",
"validate": "./bin/run validate",
"lint": "eslint '**/*.ts' --cache",
"subscriptions": "yarn workspace @segment/destination-subscriptions",
"test": "lerna run test --stream",
"typecheck": "lerna run typecheck --stream",
"alpha": "lerna publish prerelease --pre-dist-tag next --allow-branch '**' --no-git-tag-version",
"prepare": "husky install"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"cors": "^2.8.5",
"@types/ws": "^8.5.1",
"ws": "^8.5.0",
"open": "^8.4.0",
"@peculiar/webcrypto": "^1.2.3",
"@types/chance": "^1.1.3",
"@types/jest": "^27.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-lodash": "^7.3.0",
"husky": "^7.0.0",
"jest": "^27.3.1",
"lerna": "^4.0.0",
"lint-staged": "^10.5.3",
"prettier": "^2.4.1",
"ts-jest": "^27.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"resolutions": {
"**/@size-limit/preset-small-lib/**/glob-parent": "^6.0.1",
"**/analytics-next/**/dot-prop": "^4.2.1",
"ansi-regex": "5.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/src/destinations/**/index.ts": [
"./bin/run generate:types"
],
"!(templates)/**/*.ts": [
"eslint --fix --cache",
"prettier --write"
],
"*.{yml,md,json}": [
"prettier --write"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 120
},
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"isolatedModules": true
}
}
},
"dependencies": {
"chance": "^1.1.8"
}
}