-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
executable file
·37 lines (37 loc) · 1.04 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
{
"name": "react-sample-app",
"version": "0.0.1",
"description": "A sample React App used for demos",
"main": "index.js",
"scripts": {
"clear": "rimraf build",
"build": "npm run clear & webpack && cp -rvf js/* build/",
"prestart": "node_modules/.bin/webpack",
"start": "node_modules/.bin/webpack-dev-server"
},
"author": "Nina Ciocanu <nciocanu@adobe.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2",
"html-webpack-plugin": "^2.22.0"
},
"dependencies": {
"copy-webpack-plugin": "^4.4.1",
"isomorphic-fetch": "^2.2.1",
"prop-types": "^15.6.0",
"react": "^15.3.2",
"react-bootstrap": "^0.32.1",
"react-dom": "^15.3.2",
"react-icons": "^2.2.1",
"react-redux": "^5.0.6",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2"
}
}