-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "01-react-bank",
"homepage": "https://daggerok.github.io/redux-examples",
"version": "0.0.1",
"private": true,
"dependencies": {
"materialize-css": "0.100.1",
"prop-types": "15.5.10",
"react": "15.6.1",
"react-dom": "15.6.1"
},
"devDependencies": {
"gh-pages": "1.0.0",
"ncp": "2.0.0",
"npm-run-all": "4.0.2",
"react-scripts": "1.0.11"
},
"scripts": {
"prestart": "yarn install",
"prebuild": "yarn install",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "yarn install; npm-run-all predeploy:*",
"predeploy:build": "yarn build",
"predeploy:base-href": "bash ./bin/replace-href.bash ./build/index.html",
"predeploy:404-html": "ncp ./build/index.html ./build/404.html",
"deploy": "gh-pages -d ./build -b gh-pages -m \"Github Pages $(date +%Y-%m-%d) deployment\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/daggerok/redux-examples.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/daggerok/redux-examples/issues"
}
}