forked from kresusapp/kresus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
142 lines (142 loc) · 4.04 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "kresus",
"version": "0.15.1",
"engines": {
"node": ">=10"
},
"description": "Kresus' Personal Finance Manager",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://framagit.org/kresusapp/kresus"
},
"main": "client/main.js",
"dependencies": {
"@babel/polyfill": "7.6.0",
"body-parser": "1.19.0",
"cozydb": "0.1.13",
"currency-formatter": "1.5.5",
"errorhandler": "1.5.1",
"express": "4.17.1",
"ini": "1.3.5",
"log4js": "5.3.0",
"method-override": "3.0.0",
"moment": "2.24.0",
"node-polyglot": "2.4.0",
"nodemailer": "6.3.1",
"ofx": "0.4.0",
"ospath": "1.2.2",
"pouchdb": "7.1.1",
"regex-escape": "3.4.9",
"semver": "6.3.0"
},
"devDependencies": {
"@babel/cli": "7.6.4",
"@babel/core": "7.6.4",
"@babel/node": "7.6.3",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-decorators": "7.6.0",
"@babel/plugin-proposal-export-namespace-from": "7.5.2",
"@babel/plugin-proposal-function-sent": "7.5.0",
"@babel/plugin-proposal-json-strings": "7.2.0",
"@babel/plugin-proposal-numeric-separator": "7.2.0",
"@babel/plugin-proposal-throw-expressions": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-syntax-import-meta": "7.2.0",
"@babel/preset-env": "7.6.3",
"@babel/preset-react": "7.6.3",
"@babel/register": "7.6.2",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"bundle-loader": "0.5.6",
"c3": "0.4.23",
"concurrently": "5.0.0",
"copy-webpack-plugin": "5.0.4",
"css-loader": "3.2.0",
"cssnano": "4.1.10",
"dygraphs": "2.1.0",
"eslint": "6.5.1",
"eslint-plugin-dependencies": "2.4.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "2.2.0",
"file-loader": "4.2.0",
"font-awesome": "4.7.0",
"generate-json-webpack-plugin": "0.3.1",
"image-webpack-loader": "6.0.0",
"json-loader": "0.5.7",
"json-strip-loader": "1.0.5",
"lodash.throttle": "4.1.1",
"mini-css-extract-plugin": "0.8.0",
"mocha": "6.2.2",
"nodemon": "1.19.4",
"normalize.css": "8.0.1",
"onchange": "6.1.0",
"optimize-css-assets-webpack-plugin": "5.0.3",
"prettier": "1.18.2",
"primer-tooltips": "2.0.0",
"prop-types": "15.7.2",
"raw-loader": "3.1.0",
"rc-color-picker": "1.2.6",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-flatpickr": "3.9.1",
"react-modal": "3.10.1",
"react-redux": "7.1.1",
"react-router-dom": "5.1.2",
"react-select": "3.0.8",
"react-toastify": "5.4.0",
"redux": "4.0.4",
"redux-thunk": "2.3.0",
"reselect": "4.0.0",
"scripty": "1.9.1",
"should": "13.2.3",
"stylelint": "11.1.1",
"stylelint-config-standard": "19.0.0",
"updeep": "1.2.0",
"url-loader": "2.2.0",
"webpack": "4.41.2",
"webpack-bundle-analyzer": "3.6.0",
"webpack-cli": "3.3.9",
"webpack-dev-server": "3.9.0",
"webpack-spritesmith": "1.0.2",
"whatwg-fetch": "3.0.0"
},
"scripts": {
"build:ci": "scripty",
"build:server": "scripty",
"build:prod": "scripty",
"build:dev": "scripty",
"check:lint": "scripty",
"check:lint-css": "scripty",
"check:lint-full": "scripty",
"check:python": "scripty",
"check:banks": "scripty",
"check:locales": "scripty",
"check:package-json": "scripty",
"check:full-history": "scripty",
"check:test": "scripty",
"check:config": "scripty",
"check": "scripty",
"dev": "scripty",
"fix:lint": "scripty",
"fix:config": "scripty",
"release": "scripty",
"start": "node bin/kresus.js",
"watch": "scripty",
"babel": "babel",
"eslint": "eslint",
"onchange": "onchange",
"nodemon": "nodemon",
"webpack": "webpack",
"webpack-dev-server": "webpack-dev-server"
},
"bin": {
"kresus": "bin/kresus.js"
},
"scripty": {
"silent": true
}
}