-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·34 lines (34 loc) · 883 Bytes
/
Copy pathpackage.json
File metadata and controls
executable file
·34 lines (34 loc) · 883 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": "paste-node",
"version": "0.0.1",
"description": "Simple Node.js pastebin clone",
"license": "MIT",
"author": "Jason Salzman",
"main": "server.js",
"scripts": {
"watch": "./node_modules/.bin/nodemon -L -e js,json",
"lint": "./node_modules/.bin/eslint . && ./node_modules/.bin/jade-lint ./views/"
},
"dependencies": {
"babel-core": "^6.1.2",
"babel-polyfill": "^6.0.16",
"babel-preset-es2015": "^6.1.2",
"config": "^1.16.0",
"jade": "^1.11.0",
"koa": "^1.1.0",
"koa-body": "^1.3.0",
"koa-compress": "^1.0.8",
"koa-logger": "^1.3.0",
"koa-router": "^5.2.3",
"koa-static-cache": "^3.1.2",
"koa-views": "^3.1.0",
"mongoose": "^4.1.12",
"shortid": "^2.2.4"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"eslint": "^1.7.2",
"jade-lint": "^2.0.0",
"nodemon": "^1.7.2"
}
}