-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
42
{
"name": "stories",
"version": "1.0.0",
"description": "An express app for users to create, read, and rate stories.",
"main": "index.ts",
"scripts": {
"start": "ts-node index.ts",
"initDatabase": "ts-node initDatabase.ts",
"build": "tsc --project ./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AaronAyub/Stories.git"
},
"author": "Aaron Ayub",
"license": "MIT",
"bugs": {
"url": "https://github.com/AaronAyub/Stories/issues"
},
"homepage": "https://github.com/AaronAyub/Stories#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"express-handlebars": "^5.3.2",
"express-session": "^1.17.2",
"multer": "^1.4.2",
"mysql2": "^2.2.5"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.11",
"@types/express-handlebars": "^3.1.0",
"@types/express-session": "^1.17.3",
"@types/multer": "^1.4.5",
"@types/node": "^15.6.0",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
}
}