-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.26 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
{
"name": "pouchdb-playground",
"version": "0.1.0",
"scripts": {
"tx": "tx pull --all || true",
"lint": "yarn lint:js && yarn lint:styles",
"lint:js": "cs lint '{src,test}/**/*.{js,jsx}'",
"lint:styles": "stylint src/styles --config ./.stylintrc",
"prebuild": "yarn lint",
"build": "yarn build:browser",
"build:browser": "cs build --browser",
"build:mobile": "cs build --mobile",
"watch": "yarn watch:browser",
"watch:browser": "cs watch --browser",
"watch:mobile": "cs watch --mobile",
"start": "cs start --browser",
"deploy": "git-directory-deploy --directory build/ --branch ${DEPLOY_BRANCH:-build} --repo=${DEPLOY_REPOSITORY:-https://[email protected]/paultranvan/pouchdb-playground.git}",
"test": "jest",
"cozyPublish": "git fetch origin ${DEPLOY_BRANCH:-build}:${DEPLOY_BRANCH:-build} && cs publish --token $REGISTRY_TOKEN --build-commit $(git rev-parse ${DEPLOY_BRANCH:-build})",
"stack:docker:dev": "cs stackDocker",
"stack:docker:prod": "cs stackDocker --prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paultranvan/pouchdb-playground.git"
},
"author": "",
"contributors": [],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/paultranvan/pouchdb-playground/issues"
},
"homepage": "https://github.com/paultranvan/pouchdb-playground#readme",
"devDependencies": {
"babel-preset-cozy-app": "1.2.5",
"cozy-scripts": "5.4.2",
"eslint": "^7.23.0",
"eslint-config-cozy-app": "^2.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"git-directory-deploy": "1.5.1",
"prettier": "1.15.3",
"react-hot-loader": "4.6.5",
"react-test-renderer": "16.13.1",
"redux-mock-store": "1.5.3",
"stylint": "1.5.9"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/styles": "^4.11.3",
"cozy-bar": "7.16.0",
"cozy-client": "^19.1.1",
"cozy-ui": "46.0.0",
"faker": "5.5.0",
"pouchdb": "^7.2.2",
"pouchdb-adapter-indexeddb": "^7.2.2",
"pouchdb-browser": "^7.2.2",
"pouchdb-debug": "^7.2.1",
"pouchdb-find": "^7.2.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "4.3.1"
}
}