-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"name": "typewriter",
"version": "1.0.0",
"description": "Wordpress done right",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon app.js",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Peruibeloko/typewriter.git"
},
"author": "peruibeloko",
"license": "ISC",
"bugs": {
"url": "https://github.com/Peruibeloko/typewriter/issues"
},
"homepage": "https://github.com/Peruibeloko/typewriter#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"marked": "^4.0.15",
"mongoose": "^6.3.2",
"otplib": "^12.0.1",
"qrcode": "^1.5.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/marked": "^4.0.3",
"eslint": "^7.32.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2"
}
}