| author | salimr <riwad.salim@yahoo.fr> |
| Tue, 14 Aug 2018 20:39:55 +0200 | |
| changeset 144 | 8b950885ddae |
| parent 142 | 56850f5c73f6 |
| child 146 | 4f4bb2b3ef39 |
| 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", |
| 142 | 12 |
"npm": "^5.10.0", |
|
129
d48946d164c6
Add a first version of synchronisation
ymh <ymh.work@gmail.com>
parents:
97
diff
changeset
|
13 |
"qs": "^6.5.0", |
| 1 | 14 |
"react": "^15.5.4", |
| 2 | 15 |
"react-bootstrap": "^0.31.0", |
| 1 | 16 |
"react-dom": "^15.5.4", |
|
84
bf35a7737f94
Move logic to NotesList component.
Alexandre Segura <mex.zktk@gmail.com>
parents:
70
diff
changeset
|
17 |
"react-overlays": "^0.7.0", |
|
21
284e866f55c7
First version of categories tooltip.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
18 |
"react-portal": "^3.1.0", |
| 1 | 19 |
"react-redux": "^5.0.5", |
|
12
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
20 |
"react-router-redux": "next", |
| 1 | 21 |
"redux": "^3.6.0", |
22 |
"redux-immutable": "^4.0.0", |
|
|
129
d48946d164c6
Add a first version of synchronisation
ymh <ymh.work@gmail.com>
parents:
97
diff
changeset
|
23 |
"redux-persist": "^4.8.2", |
|
d48946d164c6
Add a first version of synchronisation
ymh <ymh.work@gmail.com>
parents:
97
diff
changeset
|
24 |
"redux-persist-immutable": "^4.3.0", |
|
62
b2514a9bcd49
migrate to redux-offline + various optimisation
ymh <ymh.work@gmail.com>
parents:
59
diff
changeset
|
25 |
"redux-persist-transform-immutable": "^4.3.0", |
|
130
78246db1cbac
make synchronization recurent, improve synchronization status display
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
26 |
"redux-saga": "^0.15.6", |
| 5 | 27 |
"slate": "^0.20.1", |
| 142 | 28 |
"uuid": "^3.0.1", |
29 |
"yarn": "^1.6.0" |
|
| 1 | 30 |
}, |
31 |
"devDependencies": { |
|
|
69
2f42063b0869
Import material-fonts in project for offline usage
ymh <ymh.work@gmail.com>
parents:
62
diff
changeset
|
32 |
"bootstrap-sass": "^3.3.7", |
|
3
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
33 |
"enzyme": "^2.8.2", |
|
69
2f42063b0869
Import material-fonts in project for offline usage
ymh <ymh.work@gmail.com>
parents:
62
diff
changeset
|
34 |
"material-design-icons": "^3.0.1", |
| 2 | 35 |
"node-sass-chokidar": "^0.0.1", |
| 142 | 36 |
"npm-run-all": "^4.1.2", |
|
3
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
37 |
"react-scripts": "1.0.2", |
|
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
38 |
"react-test-renderer": "^15.5.4" |
| 1 | 39 |
}, |
40 |
"scripts": { |
|
|
70
dff58e6bea47
Ass src/sass in the watch list for node-sass
ymh <ymh.work@gmail.com>
parents:
69
diff
changeset
|
41 |
"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
|
42 |
"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 | 43 |
"start-js": "react-scripts start", |
44 |
"start": "npm-run-all -p watch-css start-js", |
|
45 |
"build": "npm run build-css && react-scripts build", |
|
| 1 | 46 |
"test": "react-scripts test --env=jsdom", |
47 |
"eject": "react-scripts eject" |
|
48 |
} |
|
49 |
} |