-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "podcasts-express-with-cypress",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "./node_modules/.bin/nodemon src/app.js",
"dev:debug": "./node_modules/.bin/nodemon --inspect-brk src/app.js",
"test": "./node_modules/.bin/cypress run",
"test:open": "./node_modules/.bin/cypress open",
"test:file": "./node_modules/.bin/cypress run --spec",
"lint": "./node_modules/.bin/eslint",
"start": "node app.js"
},
"dependencies": {
"body-parser": "^1.18.3",
"cookie-parser": "~1.4.3",
"express": "~4.16.0",
"express-handlebars": "^3.0.2",
"express-session": "^1.16.1",
"flash": "^1.1.0",
"hbs": "~4.0.1",
"http-errors": "~1.6.2",
"lodash": "^4.17.21",
"morgan": "~1.9.0"
},
"devDependencies": {
"cypress": "^6.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"nodemon": "^2.0.4",
"prettier": "^1.17.0"
}
}