| author | Alexandre Segura <mex.zktk@gmail.com> |
| Thu, 22 Jun 2017 12:37:53 +0200 | |
| changeset 78 | 49c5ea36d0a4 |
| parent 70 | dff58e6bea47 |
| child 84 | bf35a7737f94 |
| 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", |
|
|
62
b2514a9bcd49
migrate to redux-offline + various optimisation
ymh <ymh.work@gmail.com>
parents:
59
diff
changeset
|
8 |
"localforage": "^1.5.0", |
|
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", |
| 1 | 11 |
"react": "^15.5.4", |
| 2 | 12 |
"react-bootstrap": "^0.31.0", |
| 1 | 13 |
"react-dom": "^15.5.4", |
|
21
284e866f55c7
First version of categories tooltip.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
14 |
"react-portal": "^3.1.0", |
| 1 | 15 |
"react-redux": "^5.0.5", |
|
12
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
16 |
"react-router-redux": "next", |
| 1 | 17 |
"redux": "^3.6.0", |
18 |
"redux-immutable": "^4.0.0", |
|
|
62
b2514a9bcd49
migrate to redux-offline + various optimisation
ymh <ymh.work@gmail.com>
parents:
59
diff
changeset
|
19 |
"redux-offline": "^2.0.0", |
|
b2514a9bcd49
migrate to redux-offline + various optimisation
ymh <ymh.work@gmail.com>
parents:
59
diff
changeset
|
20 |
"redux-persist-transform-immutable": "^4.3.0", |
|
29
4cfeabef7d5e
Store data in PouchDB.
Alexandre Segura <mex.zktk@gmail.com>
parents:
21
diff
changeset
|
21 |
"redux-saga": "^0.15.3", |
| 5 | 22 |
"slate": "^0.20.1", |
| 1 | 23 |
"uuid": "^3.0.1" |
24 |
}, |
|
25 |
"devDependencies": { |
|
|
69
2f42063b0869
Import material-fonts in project for offline usage
ymh <ymh.work@gmail.com>
parents:
62
diff
changeset
|
26 |
"bootstrap-sass": "^3.3.7", |
|
3
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
27 |
"enzyme": "^2.8.2", |
|
69
2f42063b0869
Import material-fonts in project for offline usage
ymh <ymh.work@gmail.com>
parents:
62
diff
changeset
|
28 |
"material-design-icons": "^3.0.1", |
| 2 | 29 |
"node-sass-chokidar": "^0.0.1", |
30 |
"npm-run-all": "^4.0.2", |
|
|
3
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
31 |
"react-scripts": "1.0.2", |
|
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
32 |
"react-test-renderer": "^15.5.4" |
| 1 | 33 |
}, |
34 |
"scripts": { |
|
|
70
dff58e6bea47
Ass src/sass in the watch list for node-sass
ymh <ymh.work@gmail.com>
parents:
69
diff
changeset
|
35 |
"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
|
36 |
"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 | 37 |
"start-js": "react-scripts start", |
38 |
"start": "npm-run-all -p watch-css start-js", |
|
39 |
"build": "npm run build-css && react-scripts build", |
|
| 1 | 40 |
"test": "react-scripts test --env=jsdom", |
41 |
"eject": "react-scripts eject" |
|
42 |
} |
|
43 |
} |