forked from BertTheParrot/hacker-how-content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.94 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
50
51
52
53
54
55
56
57
{
"name": "hacker-how-content",
"version": "1.0.0",
"description": "",
"main": "main.js",
"engines": {
"node": ">= 5.2.0"
},
"engine-strict": true,
"scripts": {
"debug_once": "npm run compile && node-debug dist/main.js",
"debug_watch": "forever node_modules/.bin/nodemon --exitcrash -w scripts --exec npm run start_debug",
"debug_inspect": "open http://127.0.0.1:8080/?ws=127.0.0.1:8080&port=5858 && node-inspector --preload scripts/main.js",
"clean": "rm -rf dist",
"compile": "npm run clean && mkdir dist && babel scripts --out-dir dist --source-maps",
"lint_js": "eslint ./scripts --ext=js",
"start": "npm run compile && node dist/main.js",
"start_debug": "npm run compile && node --debug-brk dist/main.js",
"start_watch": "nodemon -w scripts --exec \"npm run lint_js; npm run start\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "ISC",
"dependencies": {
"app-root-path": "^1.0.0",
"directory-tree": "^0.1.1",
"firebase": "^2.4.1",
"firebase-token-generator": "^2.0.0",
"git-rev-sync": "^1.4.0",
"lodash": "^4.2.1",
"markdown-it": "^6.0.0",
"markdown-it-emoji": "^1.1.0",
"markdown-it-lazy-headers": "^0.1.3",
"moment": "^2.10.6",
"node-uuid": "^1.4.7",
"string": "^3.3.1"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.5",
"babel-eslint": "^5.0.0-beta6",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"babel-node-debug": "^2.0.0",
"@jokeyrhyme/eslint-config-es2015": "^1.0.0",
"@jokeyrhyme/eslint-config-es5": "^1.0.0",
"eslint": "^1.10.3",
"eslint-config-import": "^0.9.1",
"eslint-config-semistandard": "^5.0.0",
"eslint-config-standard": "^4.4.0",
"eslint-loader": "^1.1.1",
"eslint-plugin-import": "^0.12.1",
"eslint-plugin-standard": "^1.3.1",
"forever": "^0.15.1",
"node-inspector": "^0.12.5",
"nodemon": "^1.8.1"
}
}