forked from kresusapp/kresus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.32 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
{
"name": "kresus",
"version": "0.13.0",
"engines": [
"node >= 6"
],
"description": "Kresus' Personal Finance Manager",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://framagit.org/bnjbvr/kresus"
},
"main": "client/main.js",
"dependencies": {
"babel-polyfill": "6.26.0",
"body-parser": "1.18.3",
"cozydb": "0.1.13",
"currency-formatter": "1.4.2",
"errorhandler": "1.5.0",
"express": "4.16.3",
"ini": "1.3.5",
"log4js": "2.9.0",
"method-override": "2.3.10",
"moment": "2.22.2",
"node-polyglot": "2.2.2",
"nodemailer": "4.6.7",
"ospath": "1.2.2",
"pouchdb": "6.4.3",
"regex-escape": "3.4.8",
"semver": "5.5.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.3",
"babel-loader": "7.1.4",
"babel-plugin-transform-react-remove-prop-types": "0.4.13",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.26.0",
"bootstrap-kresus": "0.0.4",
"bundle-loader": "0.5.6",
"c3": "0.6.2",
"concurrently": "3.5.1",
"copy-webpack-plugin": "4.5.1",
"css-loader": "0.28.11",
"cssnano": "3.10.0",
"dygraphs": "2.1.0",
"eslint": "4.19.1",
"eslint-plugin-dependencies": "2.4.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.9.1",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.11",
"font-awesome": "4.7.0",
"generate-json-webpack-plugin": "0.3.1",
"image-webpack-loader": "4.3.1",
"jquery": "3.3.1",
"json-strip-loader": "1.0.2",
"lodash.throttle": "4.1.1",
"mocha": "5.2.0",
"nodemon": "1.17.5",
"normalize.css": "8.0.0",
"onchange": "4.0.0",
"optimize-css-assets-webpack-plugin": "3.2.0",
"prettier": "1.13.5",
"prop-types": "15.6.1",
"rc-color-picker": "1.2.6",
"react": "16.4.1",
"react-dom": "16.4.1",
"react-flatpickr": "3.6.4",
"react-redux": "5.0.7",
"react-router-dom": "4.3.1",
"react-select": "1.2.1",
"redux": "4.0.0",
"redux-thunk": "2.3.0",
"reselect": "3.0.1",
"scripty": "1.7.2",
"should": "13.2.1",
"style-loader": "0.21.0",
"updeep": "1.0.0",
"url-loader": "1.0.1",
"webpack": "3.10.0",
"webpack-bundle-analyzer": "2.13.1",
"webpack-dev-server": "2.11.1",
"webpack-spritesmith": "0.4.1",
"whatwg-fetch": "2.0.4"
},
"scripts": {
"build:ci": "scripty",
"build:server": "scripty",
"build:prod": "scripty",
"build:dev": "scripty",
"check:lint": "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": "scripty",
"dev": "scripty",
"fix:lint": "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"
},
"renovate": {
"extends": [
":app"
]
},
"scripty": {
"silent": true
}
}