-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
33 lines (33 loc) · 1021 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
{
"name": "eusoff-meal-bot",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.ts,.jsx,.tsx src",
"lint:fix": "eslint --ext .js,.ts,.jsx,.tsx src --fix",
"format": "prettier --check \"src/**/*.{js,ts,jsx,tsx,scss}\"",
"format:fix": "prettier --write \"src/**/*.{js,ts,jsx,tsx,scss}\"",
"check": "yarn run lint && yarn run format",
"fix": "yarn run lint:fix && yarn run format:fix"
},
"husky": {
"hooks": {
"pre-push": "yarn run check"
}
},
"devDependencies": {
"@types/google-apps-script": "^1.0.14",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"prettier": "2.0.5",
"typescript": "^3.9.7"
}
}