-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
43
44
{
"name": "memento",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "NODE_ENV=production node ./bin/www",
"dev": "NODE_ENV=development nodemon ./bin/www",
"eslint": "eslint --ignore-path .eslintignore",
"lint": "yarn run eslint --fix",
"prettier": "prettier --ignore-path .prettierignore --check \"**/*.+(js|ts|jsx|json)\"",
"format": "yarn run prettier --write"
},
"dependencies": {
"bcrypt": "^5.1.0",
"connect-pg-simple": "^8.0.0",
"connect-redis": "^7.0.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.3",
"express": "~4.16.1",
"express-session": "^1.17.3",
"helmet": "^6.0.1",
"http-errors": "^2.0.0",
"ioredis": "^5.3.1",
"jsonwebtoken": "^9.0.0",
"morgan": "~1.9.1",
"nocache": "^3.0.4",
"pg": "^8.10.0",
"pg-hstore": "^2.3.4",
"redis": "^4.6.5",
"sanitize": "^2.1.2",
"sequelize": "^6.30.0",
"zod": "^3.21.4",
"zod-error": "^1.5.0"
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.7"
}
}