-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
{
"name": "express",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon --exec babel-node ./app.js",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1"
},
"dependencies": {
"@babel/core": "^7.19.3",
"@babel/node": "^7.19.1",
"@babel/preset-env": "^7.19.3",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-csp-header": "^5.1.0",
"fs": "^0.0.1-security",
"klaviyo-sdk": "^1.0.1",
"klaviyo-sdk-beta": "^1.0.1",
"morgan": "^1.10.0",
"path": "^0.12.7",
"pg": "^8.8.0",
"serve-favicon": "^2.5.0"
}
}