-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"name": "address-book",
"version": "0.0.1",
"description": "Address book app made with Redux + React and Babel support",
"main": "index.js",
"repository": "https://github.com/HendrikThePendric/address-book.git",
"scripts": {
"build": "./node_modules/webpack/bin/webpack.js -p",
"start": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js"
},
"author": "Hendrik de Graaf",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"css-loader": "^0.25.0",
"eslint": "^3.8.1",
"eslint-plugin-react": "^6.4.1",
"extract-text-webpack-plugin": "^1.0.1",
"node-sass": "^3.10.1",
"postcss-loader": "^1.0.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"babel-preset-stage-1": "^6.1.18",
"material-ui": "^0.16.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-reorder": "^2.1.0",
"react-tap-event-plugin": "^1.0.0"
}
}