forked from parse-community/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.3 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
{
"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 --incremental",
"dev-webpack": "webpack --mode development --watch",
"webpack": "webpack --mode production",
"dev": "npm run dev-webpack & npm run jekyll",
"dev-win": "start npm run dev-webpack & start 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.26.3",
"babel-loader": "~7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.5.0",
"husky": "^1.0.0-rc.13",
"webpack": "~4.12.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"jquery": "3.0.0",
"underscore": "^1.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run webpack && git add assets/js/bundle.js"
}
}
}