-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 949 Bytes
/
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": "dojo",
"version": "1.0.0",
"description": "First experiment with build process with yarn, parcel, and docker for React.",
"main": "index.js",
"homepage": "https://github.com/hashbangash/dojo",
"repository": "https://github.com/hashbangash/dojo",
"author": "Ash Grevelink",
"license": "MIT",
"private": false,
"dependencies": {
"@babel/preset-env": "^7.10.2",
"core-js": "^3.6.5",
"react": ">=15",
"react-dom": "^16.13.1",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"gh-pages": "^2.2.0",
"parcel": "^2.0.0-alpha.3.2",
"parcel-bundler": "^1.12.4"
},
"scripts": {
"start": "parcel serve index.html",
"build": "parcel build index.html --public-url /dojo/",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist"
},
"babel": {
"presets": [
"@babel/preset-react"
]
}
}