-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.79 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
{
"name": "devblog",
"version": "1.0.0",
"description": "A simple CMS with express with handlebars",
"main": "server.js",
"type": "commonjs",
"nodemonConfig": {
"verbose": true,
"ext": "js,json,handlebars",
"ignore": [
"/public/**",
".git",
"*yarn/**"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "yarn node server.js",
"dev": "yarn nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minusInfinite/devblog.git"
},
"author": "minusinfinite <ashley@minusinfinite.net> (https://github.com/minusInfinite)",
"license": "MIT",
"bugs": {
"url": "https://github.com/minusInfinite/devblog/issues"
},
"homepage": "https://github.com/minusInfinite/devblog#readme",
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/morgan": "^1.9.9",
"@types/node": "^20.12.12",
"eslint": "^9.3.0",
"morgan": "^1.10.0",
"nodemon": "^3.1.1",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"dependencies": {
"bcrypt": "^5.1.1",
"compression": "^1.8.0",
"connect-session-sequelize": "^7.1.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csrf-csrf": "^3.0.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-handlebars": "^7.1.2",
"express-session": "^1.18.0",
"normalize.css": "^8.0.1",
"pg": "^8.11.5",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.3"
},
"packageManager": "yarn@4.7.0"
}