forked from contentful/discovery-app-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "discovery-app-react",
"version": "1.0.0",
"description": "A React.js app of the Contentful Discovery app",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --host=0.0.0.0 --port=9020 --inline --hot",
"clean": "rimraf dist && rimraf gh-pages",
"lint": "standard src/**/*.js",
"build": "npm run clean && NODE_ENV=production BASE_PATH=discovery-app-react webpack -p",
"publish": "npm run build && ./bin/publish.sh"
},
"author": "contentful <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.26.1",
"file-loader": "^0.10.0",
"mustache": "^2.2.1",
"rimraf": "^2.5.4",
"standard": "^8.6.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"axios": "^0.12.0",
"contentful": "^3.5.0",
"flux": "^2.1.1",
"history": "^2.0.1",
"localforage": "^1.4.0",
"marked": "^0.3.6",
"pretty-bytes": "^3.0.1",
"react": "^15.0.0-rc.1",
"react-ace": "^3.4.1",
"react-addons-update": "^15.1.0",
"react-css-modules": "^3.7.5",
"react-dom": "^15.0.0-rc.1",
"react-json-tree": "^0.8.0",
"react-redux": "^4.4.5",
"react-router": "^2.0.0",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-promise": "^0.5.3",
"redux-promise-middleware": "^3.3.0",
"redux-thunk": "^2.1.0",
"scourjs": "^1.0.1",
"unique-concat": "^0.2.2"
},
"standard": {
"parser": "babel-eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/contentful/discovery-app-react.git"
},
"keywords": [
"react",
"contentful",
"discovery"
],
"bugs": {
"url": "https://github.com/contentful/discovery-app-react/issues"
},
"homepage": "https://github.com/contentful/discovery-app-react#readme"
}