forked from mathieudutour/timezone-butler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 940 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 940 Bytes
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
{
"name": "slack-timezone-butler",
"private": true,
"version": "0.1.0",
"description": "A Slack butler who will take care of the timezone differences in your team.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "npm run test -- --watch --no-watchman"
},
"author": "Mathieu Dutour",
"license": "ISC",
"dependencies": {
"cookie-session": "^2.0.0-rc.1",
"cors": "^2.8.5",
"mongodb": "^3.6.0",
"next": "^9.5.4",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@types/cookie-session": "^2.0.41",
"@types/cors": "^2.8.7",
"@types/mongodb": "^3.5.26",
"@types/react": "^16.9.48",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"typescript": "^4.0.2"
},
"prettier": {
"proseWrap": "never",
"singleQuote": true,
"trailingComma": "es5",
"semi": false
}
}