-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 840 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 840 Bytes
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
{
"name": "bundle_example",
"version": "1.0.0",
"description": "An example of how to use npm and webpack to bundle",
"main": "index.js",
"scripts": {
"lint": "eslint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"bundle",
"bundling",
"webpack",
"npm"
],
"author": "Martijn Faassen",
"license": "MIT",
"devDependencies": {
"babel-loader": "^5.3.2",
"babel-core": "^5.8.33",
"css-loader": "^0.21.0",
"file-loader": "^0.8.4",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.2"
},
"dependencies": {
"bootstrap": "^3.3.5",
"jquery": "^3.5.0",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-redux": "^4.0.0",
"redux": "^3.0.4",
"redux-logger": "^2.0.4",
"redux-thunk": "^1.0.0"
}
}