-
Notifications
You must be signed in to change notification settings - Fork 187
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "root",
"private": true,
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"chalk": "^4.1.1",
"cross-env": "^7.0.3",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^15.13.0",
"husky": "^9.1.7",
"inquirer": "^8.0.0",
"lerna": "^8.0.2",
"lint-staged": "^11.2.6",
"mocha": "^11.0.1",
"prettier": "^3.4.1",
"semver": "^7.3.8",
"should": "^13"
},
"workspaces": [
"packages/*",
"schema-to-ts"
],
"scripts": {
"test": "yarn workspaces run test && (cd schema-to-ts && yarn test)",
"smoke-test": "yarn workspace zapier-platform-cli run smoke-test && yarn workspace zapier-platform-core run smoke-test && yarn workspace zapier-platform-schema run smoke-test",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"lint-examples": "eslint examples",
"validate": "lerna run validate",
"bump": "./scripts/bump.js",
"prepare": "husky",
"generate-types": "cd schema-to-ts && yarn generate-types:build"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --stream precommit && yarn generate-types && lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix --quiet"
],
"*.{js,json}": [
"prettier --write --ignore-path=.prettierignore"
]
},
"prettier": {
"singleQuote": true
}
}