forked from elmarburke/reactdays-workshop-berlin-2017-10
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "micro-status",
"version": "0.1.0",
"private": true,
"dependencies": {
"moment": "^2.18.1",
"normalizr": "^3.2.3",
"pouchdb": "^6.3.4",
"pouchdb-server": "^2.3.7",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-promise-middleware": "^4.4.1",
"redux-thunk": "^2.2.0",
"styled-components": "^2.2.1"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.12",
"@storybook/addon-links": "^3.2.12",
"@storybook/react": "^3.2.12",
"prettier": "^1.7.4",
"react-scripts": "1.0.14",
"storybook-router": "^0.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"format": "prettier --single-quote --trailing-comma all --write \"{src,__{tests,mocks}__}/**/*.{js,css}\""
}
}