This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.81 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
{
"name": "couchdb-redux-client",
"version": "1.0.0",
"description": "Alternative interface for editing couchdb document collections",
"scripts": {
"build": "npm run clean && webpack --config webpack.config.js",
"clean": "rm -f dist/*.js || true",
"test": "mocha --compilers js:babel-register --recursive",
"test:watch": "npm test -- --watch"
},
"repository": "https://github.com/wcrbrm/couchdb-redux-client",
"keywords": [
"react",
"reactjs",
"couchdb"
],
"author": "Web Cerebrium <[email protected]>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "*",
"babel-core": "*",
"babel-eslint": "*",
"babel-loader": "*",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-decorators-legacy": "*",
"babel-preset-es2015": "*",
"babel-preset-react": "*",
"babel-preset-stage-0": "*",
"babel-preset-stage-1": "*",
"babel-register": "*",
"css-loader": "*",
"eslint": "*",
"eslint-config-airbnb": "*",
"eslint-loader": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jsx-a11y": "*",
"eslint-plugin-react": "*",
"expect": "*",
"extract-text-webpack-plugin": "*",
"file-loader": "*",
"json-loader": "*",
"postcss-loader": "*",
"react-hot-loader": "*",
"style-loader": "*",
"url-loader": "*",
"webpack": "*",
"webpack-dev-server": "*",
"webpack-livereload-plugin": "*"
},
"dependencies": {
"brace": "^0.9.1",
"es6-promise": "^3.2.1",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.17.1",
"react": "^15.3.0",
"react-ace": "^4.1.1",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.6.1",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-responsive": "^3.1.0",
"redux-thunk": "^2.1.0"
}
}