-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
40 lines (40 loc) · 991 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
{
"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",
"cors": "^2.8.5",
"mongodb": "^3.6.0",
"next": "^12.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/cookie-session": "^2.0.44",
"@types/cors": "^2.8.12",
"@types/jest": "^29.0.3",
"@types/mongodb": "^3.5.26",
"@types/react": "^18.0.20",
"jest": "^29.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.1",
"typescript": "^4.8.3"
},
"prettier": {
"proseWrap": "never",
"singleQuote": true,
"trailingComma": "es5",
"semi": false
}
}