-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 796 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 796 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
34
35
36
37
{
"name": "it122",
"version": "1.0.0",
"description": "it122 node app",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint test/data.js",
"test": "mocha test/data.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/larsswenson/IT122-Spring22.git"
},
"keywords": [
"it122",
"spring",
"22"
],
"author": "Lars Swenson",
"license": "ISC",
"bugs": {
"url": "https://github.com/larsswenson/IT122-Spring22/issues"
},
"homepage": "https://github.com/larsswenson/IT122-Spring22#readme",
"dependencies": {
"ejs": "^3.1.7",
"express": "^4.17.3",
"mongoose": "^6.3.2",
"nodemon": "^2.0.15"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.14.0",
"mocha": "^9.2.2"
}
}