-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 776 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 776 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
{
"name": "node_blog",
"version": "0.1.1",
"description": "My blog with few npm modules",
"main": "blog/Server.js",
"dependencies": {
"@types/mongoose": "^4.7.17",
"marked": "^0.3.5",
"mime": "^1.3.4",
"mongoose": "^4.9.5"
},
"devDependencies": {
"@types/node": "^7.0.12",
"clean-css": "^3.4.19",
"mocha": "2.4.x",
"node-mocks-http": "^1.5.2",
"uglify-js": "^2.7.0"
},
"scripts": {
"install": "tsc && node ./scripts/install.js",
"start": "node ./app/blog/Server.js",
"test": "tsc && mocha test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Kasperki/NodeBlog"
},
"keywords": [
"portfolio",
"blog"
],
"author": "https://twitter.com/Kassu27",
"license": "MIT"
}