-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 3.19 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
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "gadfly",
"version": "0.0.0",
"description": "Google Apps Script for scraping definitions of terms from the internet.",
"main": "srcipt/Gadfly.ts",
"repository": {
"type": "git",
"url": "[email protected]:blackboardd/gadfly.git"
},
"author": "blackboardd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blackboardd/gadfly/issues"
},
"homepage": "https://github.com/blackboardd/gadfly#readme",
"scripts": {
"prepare": "husky install",
"dev": "clasp push -w",
"format": "yarn prettier -- --write && yarn lint",
"format:lint": "eslint --fix --ext .js,.ts,.tsx ./src --ignore-path .gitignore",
"format:prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"check": "yarn check:tsc && yarn check:format",
"check:tsc": "tsc --pretty --noEmit",
"check:format": "yarn prettier -- --list-different",
"start": "yarn start:clasp",
"start:clasp": "clasp run",
"deploy": "clasp push",
"semantic-release": "^18.0.0",
"version": "clasp version \"Bump the version.\"",
"versions": "clasp versions",
"log": " clasp logs --watch >> ./logs/clasp.log"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.0",
"@semantic-release/npm": "^8.0.0",
"@semantic-release/release-notes-generator": "^10.0.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"@typescript-eslint/parser": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "^4.0.0",
"esbuild-register": "^3.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"jest": "^27.2.5",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-typescript-paths": "^1.3.0",
"semantic-release": "^18.0.0",
"shelljs": "^0.8.4",
"standard-version": "^9.3.1",
"tslib": "^2.3.1",
"type-fest": "^2.3.4",
"typescript": "^4.4.3"
},
"dependencies": {
"@types/google-apps-script": "^1.0.37",
"commitizen": "^4.2.4",
"esbuild": "^0.13.4",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-testing-library": "^4.12.4"
},
"husky": {
"hooks": {
"prepare": "husky install",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"lint-staged": {
"*.+(ts|tsx)": [
"yarn lint"
]
}
}