-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.1 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": "week4-case",
"version": "1.0.0",
"description": "Server side app",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon -L server.js",
"test": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac22/week4-CASE"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac22/week4-CASE/issues"
},
"homepage": "https://github.com/fac22/week4-CASE#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"eslint-config-node": "^2.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.1",
"multer": "^1.4.3",
"pg": "^8.7.1",
"prettier": "^2.4.1"
},
"devDependencies": {
"cypress": "^8.6.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"nodemon": "^2.0.13"
}
}