-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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": "learn-react",
"version": "0.4.0",
"description": "React learning base",
"scripts": {
"start": "(cd docs && reveal-md TechNight.md -w --theme custom)",
"build": "(cd docs && reveal-md TechNight.md --static --theme custom)",
"clean": "rimraf docs/_static",
"deploy": "npm run clean && cd docs && npm run build && ls && npm run copyAssets && npm run surge",
"copyAssets": "cp -R docs/assets docs/_static/ && cp -R docs/theme docs/_static",
"surge": "surge -d $npm_package_config_deploy_domain -p docs/_static"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zacaria/learn-react.git"
},
"author": "Zacaria",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Zacaria/learn-react/issues"
},
"homepage": "https://github.com/Zacaria/learn-react#readme",
"dependencies": {
"reveal-md": "0.1.2"
},
"devDependencies": {
"rimraf": "^2.6.1",
"surge": "latest"
},
"config": {
"deploy_domain": "learn-some-react.surge.sh"
},
"resolutions": {
"tar": "2.2.1"
}
}