| author | ymh <ymh.work@gmail.com> |
| Mon, 19 Jun 2017 21:46:21 +0200 | |
| changeset 59 | 1eb52770eefa |
| parent 58 | f16a080e0bc4 |
| child 62 | b2514a9bcd49 |
| permissions | -rw-r--r-- |
| 1 | 1 |
{ |
2 |
"name": "client", |
|
3 |
"version": "0.1.0", |
|
4 |
"private": true, |
|
|
3
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
5 |
"homepage": ".", |
| 1 | 6 |
"dependencies": { |
| 2 | 7 |
"bootstrap-sass": "^3.3.7", |
| 1 | 8 |
"immutable": "^3.8.1", |
|
12
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
9 |
"lodash": "^4.17.4", |
|
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
10 |
"moment": "^2.18.1", |
|
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
11 |
"pouchdb": "^6.2.0", |
|
29
4cfeabef7d5e
Store data in PouchDB.
Alexandre Segura <mex.zktk@gmail.com>
parents:
21
diff
changeset
|
12 |
"pouchdb-find": "^6.2.0", |
| 1 | 13 |
"react": "^15.5.4", |
| 2 | 14 |
"react-bootstrap": "^0.31.0", |
| 1 | 15 |
"react-dom": "^15.5.4", |
|
21
284e866f55c7
First version of categories tooltip.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
16 |
"react-portal": "^3.1.0", |
| 1 | 17 |
"react-redux": "^5.0.5", |
|
12
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
18 |
"react-router-redux": "next", |
| 1 | 19 |
"redux": "^3.6.0", |
|
44
3b20e2b584fe
Introduce authentication through API.
Alexandre Segura <mex.zktk@gmail.com>
parents:
29
diff
changeset
|
20 |
"redux-history-transitions": "^2.2.0", |
| 1 | 21 |
"redux-immutable": "^4.0.0", |
|
29
4cfeabef7d5e
Store data in PouchDB.
Alexandre Segura <mex.zktk@gmail.com>
parents:
21
diff
changeset
|
22 |
"redux-saga": "^0.15.3", |
| 5 | 23 |
"slate": "^0.20.1", |
| 1 | 24 |
"uuid": "^3.0.1" |
25 |
}, |
|
26 |
"devDependencies": { |
|
|
3
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
27 |
"enzyme": "^2.8.2", |
| 2 | 28 |
"node-sass-chokidar": "^0.0.1", |
29 |
"npm-run-all": "^4.0.2", |
|
|
3
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
30 |
"react-scripts": "1.0.2", |
|
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
31 |
"react-test-renderer": "^15.5.4" |
| 1 | 32 |
}, |
33 |
"scripts": { |
|
| 2 | 34 |
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules --include-path ./node_modules/bootstrap-sass/assets/stylesheets src/ -o src/", |
35 |
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules --include-path ./node_modules/bootstrap-sass/assets/stylesheets src/ -o src/ --watch --recursive", |
|
36 |
"start-js": "react-scripts start", |
|
37 |
"start": "npm-run-all -p watch-css start-js", |
|
38 |
"build": "npm run build-css && react-scripts build", |
|
| 1 | 39 |
"test": "react-scripts test --env=jsdom", |
40 |
"eject": "react-scripts eject" |
|
41 |
} |
|
42 |
} |