-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
64 lines (64 loc) · 1.95 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
58
59
60
61
62
63
64
{
"name": "telescope",
"version": "1.0.0",
"private": true,
"description": "🔭 The service ( from Client or Server ) works for render text ( md / code ) from fetching URL.",
"main": "dist/core/index.js",
"scripts": {
"client": "gojs src/client -i index.js -p 9999",
"client:build": "cd src/client && gojs -b index.js && rimraf ../../public && mv .dist ../../public",
"test": "jest",
"test:cover": "jest --coverage",
"babel": "rimraf dist && babel src -d dist -D --ignore=**/*.test.js",
"dev": "npm run babel -- -w",
"start": "npm run babel && nodemon dist/server/"
},
"keywords": [
"imcuttle",
"telescope"
],
"author": "imcuttle",
"license": "MIT",
"dependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"classname": "0.0.0",
"express": "^4.16.2",
"github-markdown-css": "^2.10.0",
"highlight.js": "^9.12.0",
"history": "^3.3.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.5",
"markdown-it": "^8.4.0",
"markdown-it-emoji": "^1.4.0",
"markdown-it-github-headings": "^1.1.1",
"markdown-it-github-preamble": "^1.0.0",
"markdown-it-replace-link": "^1.0.1",
"markdown-it-task-lists": "^2.1.0",
"md5": "^2.2.1",
"mkdirp": "^0.5.1",
"parse-github-url": "1.0.2",
"pify": "^3.0.0",
"puppeteer": "^1.1.1",
"qs": "^6.5.1",
"streamifier": "^0.1.1",
"url-join": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-lodash": "^3.3.2",
"go-js": "^1.3.12",
"jest": "^22.4.2",
"mobx": "^3.5.1",
"mobx-react": "^4.4.1",
"nodemon": "^1.15.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-mobx-vm": "0.0.10",
"rimraf": "^2.6.2"
}
}