-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
32 lines (32 loc) · 883 Bytes
/
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
{
"name": "inst377-fa2020",
"version": "1.0.0",
"description": "Base application package for assignments in INST377 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",
"prismjs": "^1.22.0",
"recursive-readdir": "^2.2.2"
},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.22.0"
}
}