This repository was archived by the owner on Mar 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.75 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.75 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "react-course",
"version": "0.0.1",
"description": "Course of React explaining some of their features and related subjects.",
"author": "Kiko Ruiz Lloret",
"license": "MIT",
"main": "./demo/index.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/kikoruiz/react-course.git"
},
"scripts": {
"build": "webpack && npm run build:slides",
"build:slides": "cp -R node_modules/reveal.js/css slides/css && cp -R node_modules/reveal.js/js slides/js && cp -R node_modules/reveal.js/lib slides/lib && cp -R node_modules/reveal.js/plugin slides/plugin",
"deploy": "gh-pages-deploy",
"clean": "rm -rf demo src subjects .babelrc .eslintrc .sass-lint.yml LICENSE package.json README.md server.js webpack.config.js",
"start": "opener http://localhost:3000 && node server.js"
},
"dependencies": {
"classnames": "2.2",
"normalize.css": "4.2",
"react": "15.3",
"react-addons-css-transition-group": "^15.3.2",
"react-dom": "15.3",
"react-router": "2.8",
"react-router-transitions": "2.1",
"reveal.js": "3.3"
},
"devDependencies": {
"babel-cli": "6.14",
"babel-eslint": "6.1",
"babel-loader": "6.2",
"babel-preset-es2015": "6.14",
"babel-preset-react": "6.11",
"css-loader": "0.25",
"eslint-plugin-react": "6.2",
"eslint": "3.5",
"gh-pages-deploy": "0.4",
"node-sass": "3.10",
"opener": "1.4",
"postcss-loader": "0.13",
"react-hot-loader": "1.3",
"sass-loader": "4.0",
"style-loader": "0.13",
"webpack-dev-server": "1.15",
"webpack-merge": "0.14",
"webpack": "1.13"
},
"gh-pages-deploy": {
"staticpath": "demo",
"prep": [
"build"
],
"post": [
"clean"
],
"noprompt": true
}
}