-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.89 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
{
"name": "community-client",
"version": "0.1.0",
"description": "DAV community site frontend",
"license": "MIT",
"author": "Abhishek Singh <[email protected]>",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/DAVFoundation/community-client"
},
"homepage": "https://github.com/DAVFoundation/community-client#readme",
"bugs": {
"url": "https://github.com/DAVFoundation/community-client/issues"
},
"scripts": {
"build": "./node_modules/.bin/webpack --config webpack.prod.js",
"start": "./node_modules/.bin/webpack-dev-server --progress --config webpack.dev.js",
"admin": "./node_modules/.bin/webpack-dev-server --progress --config webpack.admin.dev.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-modal": "^3.1.11",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-form": "^7.2.3",
"redux-saga": "^0.16.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"clean-webpack-plugin": "^0.1.18",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.9",
"eslint": "^4.16.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.6.1",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.30.1",
"regenerator": "^0.12.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.1",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1",
"webpack-merge": "^4.1.1"
}
}