-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.02 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.02 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
37
38
39
40
41
42
43
44
45
{
"name": "code-explainer",
"version": "1.0.0",
"main": "index.js",
"style": "",
"author": {
"name": "Christopher Sannar",
"email": "chris.sannar.dev@gmail.com",
"url": "http://chrissannar.com"
},
"description": "Learn what your code really means.",
"scripts": {
"dev": "nodemon --inspect index.js",
"start": "node index.js",
"test": "mocha"
},
"devDependencies": {
"blint": "^1",
"mocha": "7.1.2",
"morgan": "^1.9.1",
"node-static": "0.7.11",
"nodemon": "2.0.4",
"phantomjs-prebuilt": "^2.1.12",
"rollup": "^0.66.2",
"rollup-plugin-buble": "^0.19.2",
"rollup-watch": "^4.3.1"
},
"dependencies": {
"bcrypt": "4.0.1",
"body-parser": "^1.18.3",
"compression": "1.7.4",
"dotenv": "8.2.0",
"express": "^4.16.4",
"helmet": "3.21.3",
"mongodb": "3.4.1",
"mongoose": "5.9.12",
"node-gyp": "6.1.0",
"path": "^0.12.7",
"sanitize-html": "^1.20.0",
"serve-favicon": "^2.5.0"
},
"engines": {
"node": "10.x"
}
}