-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
198 lines (198 loc) · 7.52 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
{
"name": "cozy-banks",
"version": "1.62.0",
"main": "src/main.jsx",
"scripts": {
"build": "yarn cs build --barV7 false",
"start": "yarn cs start --barV7 false",
"watch": "yarn cs watch --barV7 false",
"analyze": "yarn build --analyzer",
"check-locales": "yarn cs check-locales",
"deploy": "yarn cs deploy",
"cozyPublish": "cozy-app-publish --token $REGISTRY_TOKEN --prepublish downcloud --postpublish mattermost --space banks",
"uploadStaticFiles": "babel-node ./scripts/upload-static-files.js",
"prebuild:browser": "npm run clean:browser",
"lint": "npm-run-all --parallel 'lint:*'",
"lint:js": "eslint --fix 'config/**.js' 'src/**/*.js' 'src/**/*.jsx' 'test/**/*.js'",
"lint:js:changes": "git diff --name-only master..HEAD | grep -E 'jsx?$' | xargs ls -d 2>/dev/null | xargs yarn eslint --fix",
"lint:css": "stylint src/styles --config node_modules/cozy-scripts/config/.stylintrc",
"stack:docker": "docker run --rm -it -p 8080:8080 -p 8025:8025 -v \"$(pwd)/build/\":/data/cozy-app/banks cozy/cozy-app-dev",
"test": "NODE_ICU_DATA=node_modules/full-icu jest",
"test:changes": "git diff --name-only master..HEAD | grep -E 'jsx?$' | xargs yarn test --bail --findRelatedTests",
"test:e2e": "yarn test:e2e:onOperationOrBillCreate && yarn test:e2e:alerts",
"test:e2e:onOperationOrBillCreate": "node test/e2e/onOperationOrBillCreate.js",
"test:e2e:alerts": "env JEST_PROJECT=e2e yarn jest",
"test:e2e:alerts-existing-cozy": "BABEL_ENV=cli babel-node --ignore /some-fake-path test/e2e/alerts-existing-cozy.js",
"check-fixtures": "node scripts/check-fixtures.js",
"find-circular-dependencies": "madge -b src/ --webpack-config webpack.config.js -c --extensions js,jsx src/targets/browser/index.jsx",
"posttest": "yarn find-circular-dependencies",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"styleguide:deploy": "git-directory-deploy --directory ./docs/build/styleguide --branch master --repo docs",
"drop-data": "ACH drop $( cat manifest.webapp | jq '.permissions | map(.type) | map(select(contains(\"io.cozy.bank.\"))) | join(\" \")' -rc)",
"fixtures": "ACH import test/fixtures/demo.json test/fixtures/helpers/index.js",
"fixtures:m": "ACH import test/fixtures/fixtures-m.json test/fixtures/helpers/index.js",
"fixtures:l": "ACH import test/fixtures/fixtures-l.json test/fixtures/helpers/index.js",
"secrets:decrypt": "openssl aes-256-cbc -K $ENCRYPTED_KEY -iv $ENCRYPTED_IV -in ./scripts/encrypted.tar.gz.enc -d | tar zxv -C scripts",
"secrets:encrypt": "tar zcvf ./scripts/decrypted.tar.gz ./scripts/decrypted && travis encrypt-file ./scripts/decrypted.tar.gz ./scripts/encrypted.tar.gz.enc -p",
"release": "./scripts/release.sh",
"service": "BABEL_ENV=cli babel-node --ignore /some-fake-path src/services/cli.js",
"service:autogroups": "BABEL_ENV=cli babel-node --ignore /some-fake-path src/targets/services/autogroups.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cozy/cozy-banks.git"
},
"author": "Cozy Cloud <[email protected]> (https://cozy.io/)",
"contributors": [],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/cozy/cozy-banks/issues"
},
"homepage": "https://github.com/cozy/cozy-banks#readme",
"devDependencies": {
"@babel/cli": "^7.10.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-optional-chaining": "7.12.7",
"@babel/polyfill": "7.6.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "^9.4.0",
"@welldone-software/why-did-you-render": "^6.1.2",
"babel-plugin-date-fns": "0.2.1",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-module-resolver": "^3.2.0",
"bundlemon": "3.1.0",
"commitlint-config-cozy": "0.4.0",
"copy-webpack-plugin": "5.0.4",
"cozy-app-publish": "0.27.2",
"cozy-jobs-cli": "1.9.13",
"dummy-json": "2.0.0",
"duplicate-package-checker-webpack-plugin": "3.0.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.14.0",
"enzyme-to-json": "3.6.1",
"eslint_d": "^12.2.0",
"expose-loader": "0.7.5",
"express": "4.17.1",
"faker": "^5.5.3",
"file-loader": "4.2.0",
"full-icu": "^1.4.0",
"git-directory-deploy": "1.5.1",
"glob": "7.1.4",
"handlebars-layouts": "3.1.4",
"html-webpack-harddisk-plugin": "1.0.1",
"html-webpack-plugin": "4.0.0-beta.5",
"husky": "3.0.7",
"identity-obj-proxy": "3.0.0",
"imports-loader": "0.8.0",
"intersection-observer": "^0.12.0",
"jest": "26.6.3",
"jest-localstorage-mock": "2.4.0",
"lint-staged": "9.2.5",
"madge": "^5.0.1",
"mailhog": "4.7.0",
"mockdate": "2.0.5",
"module-alias": "^2.2.2",
"moment-locales-webpack-plugin": "1.1.0",
"npm-run-all": "4.1.5",
"null-loader": "3.0.0",
"pretty": "2.0.0",
"prop-types": "15.7.2",
"raw-loader": "3.1.0",
"react-addons-test-utils": "16.0.0-alpha.3",
"react-styleguidist": "8.0.6",
"react-test-renderer": "16.9.0",
"shebang-loader": "0.0.1",
"stylint": "2.0.0",
"universal-url": "2.0.0",
"webpack-cli": "3.3.9",
"webpack-merge": "4.2.2",
"wtfnode": "^0.8.0",
"yarnhook": "0.4.3"
},
"dependencies": {
"@babel/core": "7.9.0",
"@cozy/minilog": "^1.0.0",
"@material-ui/styles": "^4.10.0",
"@sentry/integrations": "7.100.1",
"@sentry/react": "7.119.0",
"@testing-library/react-hooks": "^3.4.2",
"@types/classnames": "^2.3.1",
"bluebird": "3.5.5",
"chart.js": "2.9.4",
"classificator": "0.3.3",
"classnames": "2.2.6",
"cozy-bar": "^10.0.0",
"cozy-ci": "0.4.1",
"cozy-client": "^48.17.0",
"cozy-device-helper": "^2.6.0",
"cozy-doctypes": "1.82.2",
"cozy-flags": "^2.8.7",
"cozy-harvest-lib": "^30.0.0",
"cozy-intent": "^2.7.0",
"cozy-interapp": "0.9.0",
"cozy-keys-lib": "^6.0.0",
"cozy-konnector-libs": "4.44.0",
"cozy-logger": "^1.9.0",
"cozy-notifications": "0.12.0",
"cozy-pouch-link": "45.7.0",
"cozy-realtime": "4.2.9",
"cozy-scripts": "^8.3.0",
"cozy-sharing": "^15.0.3",
"cozy-ui": "^111.12.0",
"d3": "5.11.0",
"date-fns": "1.30.1",
"detect-node": "2.0.4",
"diacritics": "^1.3.0",
"element-scroll-polyfill": "1.0.1",
"eslint-config-cozy-app": "^4.0.0",
"fast-csv": "^4.3.6",
"fastclick": "^1.0.6",
"fuse.js": "^6.4.2",
"geco": "0.11.1",
"hammerjs": "2.0.8",
"localforage": "1.7.3",
"lodash": "4.17.21",
"moment": "2.29.4",
"moment-timezone": "0.5.35",
"node-polyglot": "2.3.1",
"number-to-locale-string": "1.2.0",
"pouchdb-adapter-cordova-sqlite": "2.0.5",
"pouchdb-adapter-idb": "7.2.2",
"pouchdb-adapter-indexeddb": "7.2.2",
"react": "16.9.0",
"react-chartjs-2": "2.7.6",
"react-dom": "16.9.0",
"react-fastclick": "^3.0.2",
"react-hint": "3.2.0",
"react-hot-loader": "^4.13.1",
"react-inspector": "^5.1.0",
"react-markdown": "4.2.2",
"react-redux": "7.2.0",
"react-router-dom": "^6.4.1",
"react-side-effect": "2.1.0",
"react-swipeable-views": "0.13.9",
"redux": "4",
"redux-logger": "3.0.6",
"redux-thunk": "2.3.0",
"reselect": "4.1.5",
"timezone": "1.0.22",
"velocity-animate": "1.5.2",
"whatwg-fetch": "3.0.0"
},
"commitlint": {
"extends": [
"cozy"
]
},
"optionalDependencies": {
"xsltproc": "0.0.4"
},
"_moduleDirectories": [
"src"
],
"_moduleAliases": {
"cozy-ui/transpiled/react/utils/color": "src/ducks/notifications/noop"
}
}