-
-
Notifications
You must be signed in to change notification settings - Fork 517
/
package.json
40 lines (40 loc) · 1.24 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
{
"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 --livereload",
"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",
"husky-pre-commit": "npm run webpack && git add assets/js/bundle.js"
},
"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": "7.12.3",
"@babel/preset-env": "7.12.1",
"babel-loader": "8.3.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"husky": "9.0.11",
"webpack": "5.94.0",
"webpack-cli": "4.1.0"
},
"dependencies": {
"jquery": "3.5.1",
"underscore": "1.12.1"
}
}