-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1 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
{
"name": "inst377-fa2020",
"version": "1.0.0",
"description": "Repository for INST377 Dynamic Web Applications Fall 2020 at UMD",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node --experimental-modules lab_utils/html_validation_error_gen.js",
"test2": "node --experimental-modules lab_utils/html_validation_error_gen.js && npx cypress open",
"start": "nodemon server.js"
},
"engines": {
"node": "13.x"
},
"author": "Alex Leitch",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.4",
"recursive-readdir": "^2.2.2"
},
"devDependencies": {
"email-validator": "^2.0.4",
"html-validate": "^3.0.0",
"cypress": "^4.12.1",
"cypress-html-validate": "^1.2.2",
"cypress-wait-until": "^1.7.1",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.22.0"
}
}