-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 941 Bytes
/
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
{
"scripts": {
"journal": "git log --pretty=format:'- %ad: %h \\* %s' --date='format:%Y-%m'"
},
"devDependencies": {
"@endo/eslint-plugin": "^0.5.1",
"@google/clasp": "^2.4.2",
"@jessie.js/eslint-plugin": "^0.4.0",
"@types/better-sqlite3": "^7.6.1",
"@types/google-apps-script": "^1.0.83",
"@types/node": "^14.14.7",
"@typescript-eslint/parser": "^4.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.8.4",
"typescript": "^4.8.4"
},
"eslintConfig": {
"extends": [
"plugin:@endo/recommended",
"prettier"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2020
}
},
"prettier": {
"trailingComma": "all",
"arrowParens": "avoid",
"singleQuote": true
}
}