-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 872 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
{
"name": "bastorytelling",
"version": "1.0.0",
"description": "A website to share stories and build a community.",
"main": "index.ts",
"scripts": {
"dev": "nodemon index.ts"
},
"author": "Cody Apedaile",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/express-handlebars": "^6.0.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^12.20.55",
"nodemon": "^3.0.3",
"prisma": "^5.9.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@prisma/client": "^5.9.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"dotenv": "^16.4.4",
"express": "^4.18.2",
"express-handlebars": "^7.1.2",
"jsonwebtoken": "^9.0.2",
"prisma-repl": "^1.4.0"
}
}