-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.18 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "spectacle-boilerplate",
"version": "1.0.1",
"description": "ReactJS Powered Presentation Framework",
"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 && surge . tile-server-presentation.surge.sh",
"start": "cross-env NODE_ENV=development node server.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"eslint-config-react-app": "^1.0.4",
"normalize.css": "3.0.3",
"react": "15.4.2",
"react-dom": "15.4.2",
"spectacle": "^2.0.0",
"spectacle-code-slide": "^0.4.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.18.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-plugin-transform-decorators-legacy": "^1.2.0",
"babel-plugin-transform-react-constant-elements": "^6.4.0",
"babel-plugin-transform-react-inline-elements": "^6.4.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.1",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.18.0",
"cross-env": "^1.0.7",
"css-loader": "^0.23.0",
"eslint": "^3.8.0",
"eslint-config-formidable": "^2.0.1",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-react": "^6.4.1",
"express": "^4.13.3",
"file-loader": "^0.9.0",
"html-loader": "^0.4.0",
"is-buffer": "^1.1.1",
"markdown-loader": "^0.1.7",
"node-libs-browser": "^0.5.3",
"raw-loader": "^0.5.1",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.0",
"rimraf": "^2.4.4",
"style-loader": "^0.13.0",
"surge": "latest",
"url-loader": "^0.5.6",
"webpack": "2.2.0",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.0"
},
"eslintConfig": {
"extends": "react-app",
"plugins": [
"react"
]
}
}