-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.47 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.47 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "task-board-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"startHocuspocus": "node hocuspocus.js",
"dev": "nodemon --inspect index.js",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hocuspocus/extension-database": "^1.0.0-beta.3",
"@hocuspocus/server": "^1.0.0-beta.2",
"@simplewebauthn/server": "^6.3.0-alpha.1",
"axios": "^1.1.3",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.7.0",
"otplib": "^12.0.1",
"pusher": "^5.1.2",
"rate-limiter-flexible": "^2.4.1",
"ua-parser-js": "^1.0.32"
},
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "2.0.20",
"prettier": "2.7.1"
},
"prettier": {
"tabWidth": 4,
"arrowParens": "avoid",
"singleQuote": true,
"semi": false,
"trailingComma": "none",
"overrides": [
{
"files": [
"*.css",
"*.scss"
],
"options": {
"singleQuote": false,
"tabWidth": 2
}
}
]
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}