-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.18 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "myreadinglist",
"version": "1.0.0",
"description": "a reading list website",
"main": "index.js",
"scripts": {
"serve": "nodemon bin/www",
"test": "mocha",
"lint": "eslint *.js bin/www routes/**"
},
"nodemonConfig": {
"ignore": [
"test/*",
"views/*",
"db/schema/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SuperFola/MyReadingList.git"
},
"author": "Alexandre Plateau",
"license": "ISC",
"bugs": {
"url": "https://github.com/SuperFola/MyReadingList/issues"
},
"homepage": "https://github.com/SuperFola/MyReadingList#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1"
},
"dependencies": {
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"jade": "^0.29.0",
"mocha": "^9.1.3",
"morgan": "^1.10.0",
"node-fetch": "^2.6.6",
"node-html-parser": "^5.1.0",
"nodemon": "^2.0.14"
}
}