forked from cozy/cozy-contacts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.58 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
{
"name": "cozy-contacts",
"version": "1.1.0",
"engine": {
"node": "~12",
"npm": "~6"
},
"scripts": {
"lint": "yarn lint:js && yarn lint:styles",
"lint:js": "eslint '{src,test}/**/*.{js,jsx}'",
"lint:styles": "stylint src/styles --config ./.stylintrc",
"build": "yarn build:browser",
"build:browser": "cozy-scripts build --browser",
"build:mobile": "cozy-scripts build --mobile",
"watch": "yarn watch:browser",
"watch:browser": "cozy-scripts watch --browser",
"watch:mobile": "cozy-scripts watch --mobile",
"start": "yarn start:browser",
"start:browser": "cozy-scripts start --browser",
"start:mobile": "cozy-scripts start --mobile",
"deploy": "cozy-app-publish --token $REGISTRY_TOKEN --build-dir 'build/' --prepublish downcloud --postpublish mattermost",
"test": "cozy-scripts test",
"stack:docker:dev": "docker run --rm -it -p 8080:8080 -p 5984:5984 -e COZY_DISABLE_CSP=1 -v \"$(pwd)/build\":/data/cozy-app/app cozy/cozy-app-dev",
"stack:docker:prod": "docker run --rm -it -p 8080:8080 -p 5984:5984 -v \"$(pwd)/build\":/data/cozy-app/app cozy/cozy-app-dev",
"cozyPublish": "git fetch origin ${DEPLOY_BRANCH:-build}:${DEPLOY_BRANCH:-build} && cozy-scripts publish --token $REGISTRY_TOKEN --build-commit $(git rev-parse ${DEPLOY_BRANCH:-build})",
"fixtures": "ACH import fixtures/contacts.json",
"fixtures:massive": "ACH import fixtures/massiveContacts.json",
"services:keepIndexFullNameAndDisplayNameUpToDate": "cozy-konnector-dev -m manifest.webapp build/services/keepIndexFullNameAndDisplayNameUpToDate/contacts.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cozy/cozy-contacts.git"
},
"author": "",
"contributors": [],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/cozy/cozy-contacts/issues"
},
"homepage": "https://github.com/cozy/cozy-contacts#readme",
"devDependencies": {
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react-hooks": "3.7.0",
"browser-resolve": "^2.0.0",
"bundlesize": "0.18.1",
"cozy-jobs-cli": "1.16.7",
"cozy-scripts": "^6.3.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"enzyme-to-json": "3.6.2",
"git-directory-deploy": "1.5.1",
"identity-obj-proxy": "3.0.0",
"jest-environment-jsdom-sixteen": "1.0.3",
"mockdate": "3.0.5",
"pretty-quick": "3.1.2",
"react-dom": "16.13.1",
"react-redux-test": "npm:react-redux@5.1.2",
"replace": "1.2.1",
"stylint": "2.0.0"
},
"dependencies": {
"@material-ui/core": "4.12.3",
"@testing-library/react": "10.4.9",
"classnames": "2.3.1",
"cozy-app-publish": "^0.29.0",
"cozy-bar": "7.17.9",
"cozy-client": "^29.1.1",
"cozy-device-helper": "^2.1.0",
"cozy-doctypes": "^1.83.7",
"cozy-flags": "^2.8.7",
"cozy-harvest-lib": "^7.3.6",
"cozy-intent": "^1.17.1",
"cozy-logger": "^1.9.0",
"cozy-realtime": "^4.0.5",
"cozy-sharing": "^4.1.5",
"cozy-ui": "^67.0.2",
"cozy-vcard": "^0.2.18",
"final-form": "4.10.0",
"final-form-arrays": "1.1.0",
"fuse.js": "6.4.6",
"lodash": "4.17.21",
"node-fetch": "2.6.7",
"npm-run-all": "4.1.5",
"react": "16.13.0",
"react-final-form": "3.6.7",
"react-final-form-arrays": "1.1.0",
"react-redux": "7.2.6",
"redux": "4.1.2",
"redux-logger": "3.0.6",
"redux-thunk": "2.4.1",
"remove-accents": "0.4.2",
"yarn-run-all": "3.1.1"
},
"resolutions": {
"scheduler": "0.18.0"
},
"bundlesize": [
{
"path": "./build/app/contacts.*.js",
"maxSize": "286 kB"
}
]
}