-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "event-reminder",
"version": "0.1.0",
"main": "index.js",
"repository": "https://github.com/webkom/event-reminder.git",
"author": "Webkom <[email protected]>",
"license": "MIT",
"scripts": {
"token": "node token",
"start": "node index",
"test": "yarn lint",
"pretoken": "check-env CLIENT_ID CLIENT_SECRET",
"prestart": "check-env WEBHOOK_URL",
"lint": "yarn lint:prettier && yarn lint:eslint",
"lint:eslint": "eslint .",
"lint:prettier": "prettier '**/*.js' --list-different",
"prettier": "prettier '**/*.js' --write"
},
"prettier": {
"singleQuote": true,
"printWidth": 100
},
"eslintConfig": {
"extends": [
"prettier"
],
"parserOptions": {
"ecmaVersion": 8
}
},
"dependencies": {
"@slack/client": "^4.0.1",
"check-env": "^1.3.0",
"date-fns": "^1.29.0",
"form-data": "^2.3.2",
"node-fetch": "^2.1.1"
},
"devDependencies": {
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"express": "^4.18.1",
"open": "^8.4.0",
"prettier": "^2.7.1"
}
}