| author | duong tam kien <tk@deveha.com> |
| Mon, 10 Jul 2017 16:22:59 +0200 | |
| changeset 114 | ec72869a5a20 |
| parent 97 | 69eaef18b01b |
| child 129 | d48946d164c6 |
| 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": { |
7 |
"immutable": "^3.8.1", |
|
|
97
69eaef18b01b
Improve the network saga. Try to avoid unnecessary token refresh
ymh <ymh.work@gmail.com>
parents:
84
diff
changeset
|
8 |
"jwt-decode": "^2.2.0", |
|
62
b2514a9bcd49
migrate to redux-offline + various optimisation
ymh <ymh.work@gmail.com>
parents:
59
diff
changeset
|
9 |
"localforage": "^1.5.0", |
|
12
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
10 |
"lodash": "^4.17.4", |
|
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
11 |
"moment": "^2.18.1", |
| 1 | 12 |
"react": "^15.5.4", |
| 2 | 13 |
"react-bootstrap": "^0.31.0", |
| 1 | 14 |
"react-dom": "^15.5.4", |
|
84
bf35a7737f94
Move logic to NotesList component.
Alexandre Segura <mex.zktk@gmail.com>
parents:
70
diff
changeset
|
15 |
"react-overlays": "^0.7.0", |
|
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", |
20 |
"redux-immutable": "^4.0.0", |
|
|
62
b2514a9bcd49
migrate to redux-offline + various optimisation
ymh <ymh.work@gmail.com>
parents:
59
diff
changeset
|
21 |
"redux-offline": "^2.0.0", |
|
b2514a9bcd49
migrate to redux-offline + various optimisation
ymh <ymh.work@gmail.com>
parents:
59
diff
changeset
|
22 |
"redux-persist-transform-immutable": "^4.3.0", |
|
29
4cfeabef7d5e
Store data in PouchDB.
Alexandre Segura <mex.zktk@gmail.com>
parents:
21
diff
changeset
|
23 |
"redux-saga": "^0.15.3", |
| 5 | 24 |
"slate": "^0.20.1", |
| 1 | 25 |
"uuid": "^3.0.1" |
26 |
}, |
|
27 |
"devDependencies": { |
|
|
69
2f42063b0869
Import material-fonts in project for offline usage
ymh <ymh.work@gmail.com>
parents:
62
diff
changeset
|
28 |
"bootstrap-sass": "^3.3.7", |
|
3
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
29 |
"enzyme": "^2.8.2", |
|
69
2f42063b0869
Import material-fonts in project for offline usage
ymh <ymh.work@gmail.com>
parents:
62
diff
changeset
|
30 |
"material-design-icons": "^3.0.1", |
| 2 | 31 |
"node-sass-chokidar": "^0.0.1", |
32 |
"npm-run-all": "^4.0.2", |
|
|
3
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
33 |
"react-scripts": "1.0.2", |
|
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
34 |
"react-test-renderer": "^15.5.4" |
| 1 | 35 |
}, |
36 |
"scripts": { |
|
|
70
dff58e6bea47
Ass src/sass in the watch list for node-sass
ymh <ymh.work@gmail.com>
parents:
69
diff
changeset
|
37 |
"build-css": "node-sass-chokidar --include-path ./src --include-path ./src/sass --include-path ./node_modules --include-path ./node_modules/bootstrap-sass/assets/stylesheets src/ -o src/", |
|
dff58e6bea47
Ass src/sass in the watch list for node-sass
ymh <ymh.work@gmail.com>
parents:
69
diff
changeset
|
38 |
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./src/sass --include-path ./node_modules --include-path ./node_modules/bootstrap-sass/assets/stylesheets src/ -o src/ --watch --recursive", |
| 2 | 39 |
"start-js": "react-scripts start", |
40 |
"start": "npm-run-all -p watch-css start-js", |
|
41 |
"build": "npm run build-css && react-scripts build", |
|
| 1 | 42 |
"test": "react-scripts test --env=jsdom", |
43 |
"eject": "react-scripts eject" |
|
44 |
} |
|
45 |
} |