-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
99 lines (99 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
{
"name": "cozy-store",
"version": "1.19.0",
"main": "src/index.jsx",
"scripts": {
"deploy": "env HUSKY_SKIP_HOOKS=1 git-directory-deploy --directory build/ --branch=${DEPLOY_BRANCH:-build} --repo=${DEPLOY_REPOSITORY:-origin}",
"tx": "tx pull --all",
"lint": "yarn lint:js && yarn lint:styles",
"lint:js": "eslint '{src,test}/**/*.{ts,tsx,js,jsx}'",
"lint:styles": "stylint src/styles --config ./.stylintrc",
"prebuild": "yarn lint",
"build": "cozy-scripts build --barV7 false",
"watch": "cozy-scripts watch --barV7 false",
"start": "cozy-scripts start --barV7 false",
"cozyPublish": "cozy-app-publish --token $REGISTRY_TOKEN --prepublish downcloud --postpublish mattermost",
"test": "cs test --verbose --coverage",
"stack:docker": "docker run --rm -it -p 8080:8080 -v \"$(pwd)/build\":/data/cozy-app/app cozy/cozy-app-dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cozy/cozy-store.git"
},
"author": "Cozy Cloud <contact@cozycloud.cc> (https://cozy.io/)",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/cozy/cozy-store/issues"
},
"homepage": "https://github.com/cozy/cozy-store#readme",
"devDependencies": {
"@babel/eslint-parser": "7.19.1",
"@babel/polyfill": "^7.12.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "11.2.7",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"babel-preset-cozy-app": "^2.1.0",
"bundlemon": "3.1.0",
"cozy-scripts": "^8.3.0",
"cozy-tsconfig": "^1.2.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "8.35.0",
"eslint-config-cozy-app": "^6.1.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"git-directory-deploy": "1.5.1",
"identity-obj-proxy": "3.0.0",
"npm-run-all": "4.1.5",
"prettier": "1.19",
"react-hot-loader": "4.13.1",
"sinon-stub-promise": "4.0.0",
"stylint": "2.0.0"
},
"dependencies": {
"@cozy/minilog": "^1.0.0",
"@sentry/integrations": "^7.114.0",
"@sentry/react": "^8.5.0",
"cozy-bar": "^16.0.1",
"cozy-client": "^49.4.0",
"cozy-device-helper": "^2.1.0",
"cozy-devtools": "^1.2.1",
"cozy-doctypes": "1.85.0",
"cozy-flags": "^4.6.1",
"cozy-intent": "^2.29.1",
"cozy-interapp": "0.9.0",
"cozy-logger": "1.9.0",
"cozy-minilog": "^3.3.1",
"cozy-realtime": "3.14.4",
"cozy-stack-client": "^49.4.0",
"cozy-ui": "^111.15.1",
"emoji-js": "3.7.0",
"focus-trap-react": "4.0.1",
"fuse.js": "6.5.3",
"lodash": "4.17.21",
"node-fetch": "2.6.7",
"prop-types": "15.7.2",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-inspector": "5.1.1",
"react-markdown": "3.6.0",
"react-proptypes": "1.0.0",
"react-redux": "7.2.8",
"react-router-dom": "6.3.0",
"react-test-renderer": "16.14.0",
"redux": "4.1.2",
"redux-logger": "3.0.6",
"redux-mock-store": "1.5.4",
"redux-raven-middleware": "1.2.0",
"redux-thunk": "2.3.0",
"sinon": "7.5.0",
"url-search-params-polyfill": "7.0.1"
}
}