-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.36 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.36 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
{
"name": "react-webpack-wrapper-example",
"version": "1.0.0",
"description": "An example of how to wrap react components for consumption in non-react websites using webpack",
"main": "wrapper.js",
"scripts": {
"example": "node server.js",
"bundle-js-dev": "webpack --config ./webpack.dev.config.js",
"bundle-js-prod": "webpack -p --config ./webpack.prod.config.js",
"bundle-js": "npm run test && npm run bundle-js-dev && npm run bundle-js-prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sevenleaps/react-webpack-wrapper-example.git"
},
"author": "Seven Leaps <sevenleaps@gmail.com> (https://medium.com/@sevenleaps)",
"license": "ISC",
"bugs": {
"url": "https://github.com/sevenleaps/react-webpack-wrapper-example/issues"
},
"homepage": "https://github.com/sevenleaps/react-webpack-wrapper-example#readme",
"dependencies": {
"babel-cli": "^6.5.0",
"babel-core": "^6.5.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.5.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-runtime": "^6.5.0",
"chat-template": "0.0.21",
"express": "^4.13.4",
"react": "^15.0.1",
"react-dom": "^15.0.0",
"webpack": "^1.13.0"
}
}