-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.02 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.02 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
61
62
63
64
65
{
"name": "webpack-presentation",
"version": "1.0.0",
"description": "webpack: the good parts and some other things too",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.production.js",
"lint": "eslint --ext .js,.jsx .",
"deploy": "npm run build",
"postdeploy": "gh-pages -d dist",
"start": "cross-env NODE_ENV=development node server.js"
},
"author": "Dustin Schau <dustinschau@gmail.com>",
"repository": {
"type": "git",
"repository": "https://github.com/DSchau/webpack-presentation"
},
"license": "MIT",
"dependencies": {
"lodash.chunk": "^4.0.6",
"normalize.css": "3.0.3",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"spectacle": "^1.0.0",
"spectacle-code-slide": "^0.1.8"
},
"devDependencies": {
"autoprefixer-core": "^6.0.1",
"babel-core": "^6.4.0",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.1",
"babel-preset-stage-0": "^6.3.13",
"cross-env": "^1.0.7",
"css-loader": "^0.23.0",
"eslint": "^1.8.0",
"eslint-config-defaults": "^7.1.1",
"eslint-plugin-filenames": "^0.1.2",
"eslint-plugin-react": "^3.6.3",
"express": "^4.13.3",
"file-loader": "^0.8.4",
"gh-pages": "^0.11.0",
"html-loader": "^0.4.0",
"html-webpack-plugin": "^2.22.0",
"is-buffer": "^1.1.1",
"markdown-loader": "^0.1.7",
"node-libs-browser": "^0.5.3",
"raw-loader": "^0.5.1",
"react-transform-hmr": "^1.0.4",
"rimraf": "^2.4.4",
"style-loader": "^0.13.0",
"surge": "latest",
"url-loader": "^0.5.6",
"webpack": "^1.12.8",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.5.0"
}
}