-
Notifications
You must be signed in to change notification settings - Fork 187
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "root",
"private": true,
"devDependencies": {
"chalk": "^4.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^7.0.4",
"inquirer": "^8.0.0",
"lerna": "^6.4.1",
"lint-staged": "^11.2.6",
"mocha": "^10.2.0",
"prettier": "^2.8.3",
"semver": "^7.3.8",
"should": "^13"
},
"workspaces": [
"packages/*"
],
"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 install",
"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"
]
},
"prettier": {
"singleQuote": true
}
}