forked from parse-community/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "parsedocs",
"version": "0.0.1",
"description": "A static site that serves Parse's documentation using Jekyll on GitHub Pages. Work in progress.",
"main": "_app/main.js",
"scripts": {
"start": "npm run dev",
"jekyll": "bundle exec jekyll serve",
"dev-webpack": "webpack --watch",
"webpack": "webpack -p",
"dev": "npm run dev-webpack & npm run jekyll",
"prod": "npm run webpack & npm run jekyll",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ParsePlatform/docs.git"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/ParsePlatform/docs/issues"
},
"homepage": "https://github.com/ParsePlatform/docs#readme",
"devDependencies": {
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"webpack": "^1.13.1"
},
"dependencies": {
"jquery": "^2.2.4",
"underscore": "^1.8.3"
}
}