-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.62 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "mystash",
"version": "0.2.0",
"description": "Personal finance app",
"main": "index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"build": "npm run rs:build",
"cosmos": "cosmos",
"dev": "npm-run-all --print-label --parallel --race watch:api rs:start",
"env": "node ./src/backend/env.js",
"lint": "eslint --ignore-path=.gitignore --ext .js,.jsx .",
"rs:build": "react-scripts build",
"rs:start": "PORT=3001 FORCE_COLOR=1 react-scripts start",
"rs:test": "react-scripts test --runInBand --env=node",
"start": "node index.js",
"test": "npm-run-all env lint \"rs:test -- --coverage {@}\" --",
"watch:api": "nodemon index.js",
"watch:test": "npm run rs:test"
},
"repository": {
"type": "git",
"url": "https://github.com/jozsi/mystash.git"
},
"keywords": [
"personal",
"finance"
],
"author": "Jozsi Gergely & Radu Lucaciu",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jozsi/mystash/issues"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"currency-formatter": "^1.5.3",
"dotenv-safe": "^6.1.0",
"isemail": "^3.2.0",
"jsonwebtoken": "^8.3.0",
"koa": "^2.6.1",
"koa-bodyparser": "^4.2.1",
"koa-connect-history-api-fallback": "^0.3.1",
"koa-jwt": "^3.5.1",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"mongoose": "^5.3.7",
"npm-run-all": "^4.1.3",
"regression": "^2.0.1"
},
"devDependencies": {
"codecov": "^3.1.0",
"dot-prop-immutable": "^1.5.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"escape-string-regexp": "^1.0.5",
"eslint-plugin-jest": "^22.1.2",
"grommet": "^1.11.0",
"moment": "^2.22.2",
"nodemon": "^1.18.5",
"object.omit": "^3.0.0",
"prop-types": "^15.6.2",
"react": "^16.6.0",
"react-color": "^2.14.1",
"react-cosmos": "^4.6.4",
"react-cosmos-redux-proxy": "^4.6.1",
"react-cosmos-router-proxy": "^4.6.1",
"react-cosmos-telescope": "^4.6.4",
"react-cosmos-test": "^4.6.4",
"react-cosmos-wrapper-proxy": "^1.4.0",
"react-dom": "^16.6.0",
"react-redux": "^5.1.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.3",
"react-select": "^1.3.0",
"recharts": "^1.3.5",
"redux": "^4.0.1",
"redux-api-middleware": "^2.3.0",
"redux-devtools": "^3.4.1",
"redux-devtools-dock-monitor": "^1.1.3",
"redux-devtools-log-monitor": "^1.4.0",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"supertest": "^3.3.0"
},
"proxy": "http://localhost:3000",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}