-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.77 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
{
"dependencies": {
"@blueprintjs/core": "^3.9.0",
"@zeit/next-typescript": "^1.1.1",
"glob": "^7.1.3",
"html-to-react": "^1.3.4",
"html-to-text": "^5.1.1",
"lunr": "2.1.4",
"mathjax-node-page": "1.4.1",
"recharts": "^1.5.0",
"siren-nav": "2.0.0-alpha.5",
"siren-types": "1.0.0-rc6"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@types/glob": "^7.1.1",
"@types/lunr": "^2.3.0",
"@types/next": "^7.0.5",
"@types/react": "^16.8.3",
"@types/react-dom": "^16.8.3",
"@types/recharts": "^1.1.16",
"@zeit/next-css": "^1.0.1",
"next": "^7.0.2",
"react": "16.8.0",
"react-dom": "16.8.0",
"serve": "^10.1.1",
"typescript": "^3.2.1"
},
"name": "@xogeny/book-nextgen",
"description": "A book generator that is based on Next.js and Blueprint.js",
"version": "0.1.0",
"main": "lib/index.js",
"scripts": {
"dev": "next",
"build": "next build",
"export": "next export",
"start": "next start",
"serve": "yarn build && yarn export && serve dist",
"index": "node buildIndex.js",
"en-build": "next build && next export -o dist",
"kr-build": "next build && next export --basePath /kr -o dist/kr",
"deploy": "netlify deploy --prod --dir=dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xogeny/book-nextgen.git"
},
"keywords": [
"Sphinx"
],
"author": "Michael M. Tiller",
"license": "MIT",
"bugs": {
"url": "https://github.com/xogeny/book-nextgen/issues"
},
"homepage": "https://github.com/xogeny/book-nextgen#readme"
}