-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.93 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
{
"name": "react-hocs-and-node-iot",
"version": "1.0.0",
"description": "Higher Order Components in React and Coding the Internet of Rain -- Powered by Spectacle.js",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.production.js",
"build": "npm run clean && npm run build:webpack",
"start": "cross-env NODE_ENV=development node server.js",
"lint": "eslint --ext .js,.jsx .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Adam Recvlohe and Rigo Acifuina",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-react-transform": "^2.0.2",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-standard": "^0.2.0",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"eslint": "^3.6.0",
"eslint-config-defaults": "^9.0.0",
"eslint-config-standard-jsx": "^3.0.1",
"eslint-config-standard-react": "^4.0.2",
"eslint-plugin-react": "^6.3.0",
"eslint-plugin-standard": "^2.0.0",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"html-loader": "^0.4.4",
"is-buffer": "^1.1.4",
"markdown-loader": "^0.1.7",
"node-libs-browser": "^1.0.0",
"raw-loader": "^0.5.1",
"react-transform-hmr": "^1.0.4",
"rimraf": "^2.5.4",
"standard": "^8.1.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.2",
"webpack-dev-server": "^1.16.1",
"webpack-hot-middleware": "^2.12.2"
},
"dependencies": {
"normalize.css": "^4.2.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"spectacle": "^1.2.3",
"spectacle-code-slide": "^0.3.1"
}
}