forked from PipedreamHQ/pipedream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.01 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
{
"name": "pipedream",
"version": "1.2.1",
"description": "Pipedream Monorepo",
"keywords": [
"pipedream",
"integration",
"api"
],
"homepage": "https://github.com/PipedreamHQ/pipedream#readme",
"bugs": {
"url": "https://github.com/PipedreamHQ/pipedream/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PipedreamHQ/pipedream.git"
},
"license": "MIT",
"author": "Pipedream <[email protected]> (https://pipedream.com)",
"main": "index.js",
"directories": {
"lib": "components",
"doc": "docs",
"example": "examples"
},
"scripts": {
"prepare": "husky install",
"build": "npx tsc --build | node scripts/tsPostBuild.mjs",
"test": "jest --passWithNoTests components",
"test-all": "npm test && npm run platform-test && npm run types-test",
"platform-dist": "cd platform && git add dist && (git diff-index --quiet HEAD || git commit -m 'update platform/dist')",
"platform-test": "cd platform && npm test",
"types-test": "cd types && npm test",
"helpers-test": "cd helpers && npm test"
},
"devDependencies": {
"@pipedream/types": "^0.1.3",
"@tsconfig/node14": "^1.0.1",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "8.15.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsonc": "^1.6.0",
"eslint-plugin-pipedream": "0.2.4",
"eslint-plugin-putout": "^15.1.1",
"graphql": "^16.2.0",
"graphql-request": "^3.7.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"pnpm": "^7.0.1",
"putout": ">=20",
"renamer": "^4.0.0",
"ts-jest": "^27.1.4",
"tsc-esm-fix": "^2.18.0",
"tsc-watch": "^5.0.3",
"typescript": "^4.7.2"
},
"lint-staged": {
"*.{js,mjs}": "eslint --cache --fix"
},
"private": true,
"dependencies": {
"@sentry/node": "^7.7.0",
"@types/node": "^17.0.36",
"crypto": "^1.0.1",
"uuid": "^8.3.2",
"vue": "^2.6.14"
}
}