-
- Downloads
Initial commit
parents
Branches
Tags
Showing
- .editorconfig 15 additions, 0 deletions.editorconfig
- .eslintrc.json 3 additions, 0 deletions.eslintrc.json
- .github/ISSUE_TEMPLATE 0 additions, 0 deletions.github/ISSUE_TEMPLATE
- .gitignore 48 additions, 0 deletions.gitignore
- .stylintrc 120 additions, 0 deletions.stylintrc
- .travis.yml 46 additions, 0 deletions.travis.yml
- CONTRIBUTING.md 128 additions, 0 deletionsCONTRIBUTING.md
- LICENSE 0 additions, 0 deletionsLICENSE
- README.md 170 additions, 0 deletionsREADME.md
- babel.config.js 3 additions, 0 deletionsbabel.config.js
- jest.config.js 20 additions, 0 deletionsjest.config.js
- jsconfig.json 10 additions, 0 deletionsjsconfig.json
- manifest.webapp 37 additions, 0 deletionsmanifest.webapp
- package.json 56 additions, 0 deletionspackage.json
- renovate.json 5 additions, 0 deletionsrenovate.json
- src/assets/icons/icon-bullet-point.svg 3 additions, 0 deletionssrc/assets/icons/icon-bullet-point.svg
- src/components/AppLayout.jsx 49 additions, 0 deletionssrc/components/AppLayout.jsx
- src/components/AppRouter.jsx 29 additions, 0 deletionssrc/components/AppRouter.jsx
- src/components/HelloViews/Hello1.jsx 7 additions, 0 deletionssrc/components/HelloViews/Hello1.jsx
- src/components/HelloViews/Hello1.spec.jsx 22 additions, 0 deletionssrc/components/HelloViews/Hello1.spec.jsx
.editorconfig
0 → 100644
.eslintrc.json
0 → 100644
.github/ISSUE_TEMPLATE
0 → 100644
.gitignore
0 → 100644
.stylintrc
0 → 100644
.travis.yml
0 → 100644
CONTRIBUTING.md
0 → 100644
LICENSE
0 → 100644
This diff is collapsed.
README.md
0 → 100644
babel.config.js
0 → 100644
jest.config.js
0 → 100644
jsconfig.json
0 → 100644
manifest.webapp
0 → 100644
package.json
0 → 100644
{ | |||
"name": "lets-gone", | |||
"version": "0.1.0", | |||
"scripts": { | |||
"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://$GITHUB_TOKEN@github.com/bastiendmt/lets-gone.git}", | |||
"test": "cs test --verbose --coverage", | |||
"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/bastiendmt/lets-gone.git" | |||
}, | |||
"author": "", | |||
"contributors": [], | |||
"license": "AGPL-3.0", | |||
"bugs": { | |||
"url": "https://github.com/bastiendmt/lets-gone/issues" | |||
}, | |||
"homepage": "https://github.com/bastiendmt/lets-gone#readme", | |||
"devDependencies": { | |||
"@testing-library/jest-dom": "5.16.5", | |||
"@testing-library/react": "13.4.0", | |||
"babel-preset-cozy-app": "^2.0.4", | |||
"cozy-bar": "7.16.0", | |||
"eslint-config-cozy-app": "^5.2.0", | |||
"git-directory-deploy": "1.5.1", | |||
"react-hot-loader": "4.13.0", | |||
"react-test-renderer": "18.2.0" | |||
}, | |||
"dependencies": { | |||
"cozy-client": "^34.5.0", | |||
"cozy-device-helper": "^2.6.0", | |||
"cozy-flags": "^2.10.2", | |||
"cozy-intent": "^2.7.0", | |||
"cozy-logger": "^1.9.1", | |||
"cozy-scripts": "8.3.0", | |||
"cozy-ui": "^78.1.1", | |||
"react": "18.2.0", | |||
"react-dom": "18.2.0", | |||
"react-router-dom": "6.4.5" | |||
} | |||
} | |||
\ No newline at end of file |
renovate.json
0 → 100644
src/assets/icons/icon-bullet-point.svg
0 → 100644
src/components/AppLayout.jsx
0 → 100644
src/components/AppRouter.jsx
0 → 100644
src/components/HelloViews/Hello1.jsx
0 → 100644
src/components/HelloViews/Hello1.spec.jsx
0 → 100644
Please register or sign in to comment