First commit: this starts off on a pretty solid foot because we iterated on it a lot already.
This commit is contained in:
64
package.json
Normal file
64
package.json
Normal file
@ -0,0 +1,64 @@
|
||||
{
|
||||
"name": "docbox",
|
||||
"version": "1.0.0",
|
||||
"description": "an api documentation website",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "budo src/index.js --serve=bundle.js --live",
|
||||
"test": "npm run test-unit && eslint src && npm run prerender -- /dev/null && rm -rf lib",
|
||||
"test-unit": "mocha --compilers js:babel-register test",
|
||||
"prerender": "babel src --out-dir lib && node lib/render.js",
|
||||
"build": "NODE_ENV=production browserify src/index.js | uglifyjs -c -m > bundle.js && npm run prerender -- index.html"
|
||||
},
|
||||
"browserify": {
|
||||
"transform": [
|
||||
"babelify",
|
||||
"brfs"
|
||||
]
|
||||
},
|
||||
"keywords": [
|
||||
"api",
|
||||
"documentation"
|
||||
],
|
||||
"author": "Tom MacWright",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"babel-cli": "^6.4.0",
|
||||
"babel-eslint": "^4.1.6",
|
||||
"babel-polyfill": "^6.3.14",
|
||||
"babel-preset-es2015": "^6.3.13",
|
||||
"babel-preset-react": "^6.3.13",
|
||||
"babel-preset-stage-0": "^6.3.13",
|
||||
"babelify": "^7.2.0",
|
||||
"brfs": "^1.4.2",
|
||||
"browserify": "^13.0.0",
|
||||
"cssnano": "^3.4.0",
|
||||
"es6-promise": "^3.0.2",
|
||||
"eslint": "^1.10.3",
|
||||
"eslint-plugin-babel": "^3.0.0",
|
||||
"eslint-plugin-react": "^3.14.0",
|
||||
"github-slugger": "^1.0.1",
|
||||
"isomorphic-fetch": "^2.2.0",
|
||||
"lodash.debounce": "^4.0.3",
|
||||
"minifyify": "^7.1.0",
|
||||
"react": "^0.14.6",
|
||||
"react-dom": "^0.14.6",
|
||||
"react-pure-render": "^1.0.2",
|
||||
"react-visibility-sensor": "^3.0.0",
|
||||
"react-waypoint": "^1.2.0",
|
||||
"remark": "^3.2.0",
|
||||
"remark-highlight.js": "^2.0.0",
|
||||
"remark-html": "^2.0.2",
|
||||
"remark-slug": "^3.0.1",
|
||||
"unist-util-select": "^1.3.0",
|
||||
"unist-util-visit": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-register": "^6.3.13",
|
||||
"expect": "^1.13.4",
|
||||
"mocha": "^2.3.4",
|
||||
"to-vfile": "^1.0.0",
|
||||
"budo": "^7.1.0",
|
||||
"uglifyjs": "^2.4.10"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user