-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1011 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1011 Bytes
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
{
"name": "programmer-quiz",
"version": "0.1.0",
"description": "Unserious personality quiz about what kind of programmer stereotype you are. Final project of the Software Development Tools class at Emmanuel College, Fall 2024.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "npx eslint --fix . && npx prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ec-idds/programmer-quiz.git"
},
"author": "Mark Sherman <profmarksherman@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ec-idds/programmer-quiz/issues"
},
"homepage": "https://github.com/ec-idds/programmer-quiz#readme",
"dependencies": {
"debug": "^4.4.0",
"express": "^4.21.2",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"prettier": "3.3.3"
}
}