-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.11 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "familyfinance-webapp",
"version": "0.1.0",
"author": {
"name": "FarminF",
"email": "[email protected]"
},
"main": "public/electron.js",
"repository": {
"url": "http://github.com/farminf/FamilyFinance"
},
"homepage": "https://familyfinance-webapp.herokuapp.com/",
"dependencies": {
"@material-ui/core": "^1.2.2",
"@material-ui/icons": "^1.1.0",
"classnames": "^2.2.5",
"electron-is-dev": "^1.0.1",
"enzyme-to-json": "3.0.1",
"express": "^4.16.2",
"firebase": "latest",
"heroku-ssl-redirect": "^0.0.4",
"lodash": "^4.17.4",
"moment": "^2.20.1",
"numeral": "^2.0.6",
"raf": "^3.4.0",
"react": "^16.4.1",
"react-csv": "^1.0.12",
"react-dates": "^16.0.1",
"react-dom": "^16.4.1",
"react-icons": "^2.2.7",
"react-recaptcha": "^2.3.5",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "2.1.1",
"react-test-renderer": "^16.4.1",
"recharts": "^1.0.0-beta.9",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"scripts": {
"start": "node server/server.js",
"dev": "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",
"electron-dev": "concurrently \"BROWSER=none yarn dev\" \"wait-on http://localhost:3000 && electron .\""
},
"devDependencies": {
"babel-core": "7.0.0-bridge.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^4.0.1",
"electron": "^7.2.4",
"electron-builder": "^20.28.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^1.1.4",
"jest-cli": "20.0.4",
"prettier": "^1.12.1",
"pretty-quick": "^1.4.1",
"wait-on": "^3.1.0"
},
"husky": {
"hooks": {
"pre-push": "CI=true npm test"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}