-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
86 lines (86 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
{
"name": "cozy-bar",
"version": "0.0.0-development",
"description": "cozy-bar.js library, a small lib provided by cozy-stack to inject the Cozy-bar component into each app",
"main": "dist/index.js",
"author": "Cozy Cloud <contact@cozycloud.cc> (https://cozy.io/)",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/cozy/cozy-bar.git"
},
"homepage": "https://github.com/cozy/cozy-bar",
"bugs": {
"url": "https://github.com/cozy/cozy-bar/issues"
},
"license": "MIT",
"scripts": {
"build": "env BABEL_ENV=transpilation babel ./src -d ./dist --extensions .js,.jsx --ignore '**/*.spec.jsx','**/*.spec.js' --copy-files",
"prepublishOnly": "yarn build",
"clean": "rm -rf ./dist/*",
"lint": "eslint '{config,src,examples,test}/**/*.{js,jsx}'",
"prebuild": "npm-run-all clean",
"prewatch": "npm-run-all clean",
"tx": "tx pull --all || true",
"test": "jest",
"travis-deploy-once": "travis-deploy-once",
"start": "yarn build --watch"
},
"devDependencies": {
"@babel/cli": "7.12.1",
"@babel/core": "7.6.2",
"@babel/polyfill": "^7.10.4",
"@cozy/minilog": "^1.0.0",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^10.2.1",
"babel-jest": "24.9.0",
"babel-loader": "^8.1.0",
"babel-plugin-css-modules-transform": "^1.6.2",
"babel-plugin-inline-json-import": "^0.3.2",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-define": "^2.0.0",
"babel-preset-cozy-app": "^1.9.0",
"cozy-client": "^51.1.0",
"cozy-device-helper": "2.6.0",
"cozy-flags": "^4.6.1",
"cozy-intent": "^2.29.1",
"cozy-interapp": "0.4.9",
"cozy-logger": "1.9.1",
"cozy-realtime": "^4.0.5",
"cozy-ui": "^111.12.0",
"eslint-config-cozy-app": "2.0.0",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"npm-run-all": "4.1.5",
"react": "16.10.1",
"react-dom": "16.10.1",
"semantic-release": "15.13.24",
"stylus": "0.57.0"
},
"dependencies": {
"hammerjs": "2.0.8",
"lodash.debounce": "4.0.8",
"lodash.set": "^4.3.2",
"lodash.unionwith": "4.6.0",
"prop-types": "15.7.2",
"react-redux": "5.1.1",
"redux": "4.1.2",
"redux-logger": "3.0.6",
"redux-persist": "5.10.0",
"redux-thunk": "2.3.0"
},
"peerDependencies": {
"@cozy/minilog": ">=1.0.0",
"cozy-client": ">=51.1.0",
"cozy-device-helper": ">=2.6.0",
"cozy-flags": ">=4.6.1",
"cozy-intent": ">=2.29.1",
"cozy-interapp": ">=0.4.9",
"cozy-realtime": ">=4.0.5",
"cozy-ui": ">=111.12.0",
"react": ">=16.10.1",
"react-dom": ">=16.10.1"
}
}