forked from pijerotechnologies/pijero-time
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1013 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
37
38
39
40
41
42
43
44
45
{
"name": "pijero-time",
"private": true,
"version": "1.5.0",
"description": "Sample Slack app that responds to an Slack slash command with an interactive message",
"scripts": {
"unit-test": "jest",
"unit-test-watch": "jest --watch",
"start": "node src/index.js --trace-warnings",
"dev": "nodemon src/index.js"
},
"husky": {
"hooks": {
"pre-push": "npm run unit-test"
}
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"engines": {
"node": ">=4.2.0",
"npm": ">=2.14.7"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.17.1",
"date-fns": "^2.19.0",
"date-fns-timezone": "^0.1.4",
"date-fns-tz": "^1.1.3",
"debug": "^3.1.0",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"husky": "^5.1.3",
"jest": "^26.6.3",
"node-cron": "^2.0.3",
"tsscmp": "^1.0.6"
},
"devDependencies": {
"nodemon": "^1.19.4",
"prettier": "2.2.1"
}
}