Showing
- cypress/e2e/edit-job-offer.cy.js 66 additions, 0 deletionscypress/e2e/edit-job-offer.cy.js
- cypress/e2e/edit-project.cy.js 69 additions, 0 deletionscypress/e2e/edit-project.cy.js
- cypress/e2e/edit-user.cy.js 73 additions, 0 deletionscypress/e2e/edit-user.cy.js
- cypress/e2e/leave-channel.cy.js 42 additions, 0 deletionscypress/e2e/leave-channel.cy.js
- cypress/e2e/leave-project.cy.js 42 additions, 0 deletionscypress/e2e/leave-project.cy.js
- cypress/e2e/list-job-offers.cy.js 84 additions, 0 deletionscypress/e2e/list-job-offers.cy.js
- cypress/e2e/list-users.cy.js 124 additions, 0 deletionscypress/e2e/list-users.cy.js
- cypress/e2e/retire-channel.cy.js 63 additions, 0 deletionscypress/e2e/retire-channel.cy.js
- cypress/e2e/retire-project.cy.js 63 additions, 0 deletionscypress/e2e/retire-project.cy.js
- cypress/e2e/signin.cy.js 101 additions, 0 deletionscypress/e2e/signin.cy.js
- cypress/e2e/signup.cy.js 61 additions, 0 deletionscypress/e2e/signup.cy.js
- cypress/fixtures/admin.json 4 additions, 0 deletionscypress/fixtures/admin.json
- cypress/fixtures/example.json 5 additions, 0 deletionscypress/fixtures/example.json
- cypress/support/commands.js 72 additions, 0 deletionscypress/support/commands.js
- cypress/support/e2e.js 37 additions, 0 deletionscypress/support/e2e.js
- gitlabci.pub 0 additions, 1 deletiongitlabci.pub
- index.html 79 additions, 0 deletionsindex.html
- jsconfig.json 10 additions, 0 deletionsjsconfig.json
- package-lock.json 9898 additions, 4132 deletionspackage-lock.json
- package.json 38 additions, 23 deletionspackage.json
cypress/e2e/edit-job-offer.cy.js
0 → 100644
cypress/e2e/edit-project.cy.js
0 → 100644
cypress/e2e/edit-user.cy.js
0 → 100644
cypress/e2e/leave-channel.cy.js
0 → 100644
cypress/e2e/leave-project.cy.js
0 → 100644
cypress/e2e/list-job-offers.cy.js
0 → 100644
cypress/e2e/list-users.cy.js
0 → 100644
cypress/e2e/retire-channel.cy.js
0 → 100644
cypress/e2e/retire-project.cy.js
0 → 100644
cypress/e2e/signin.cy.js
0 → 100644
cypress/e2e/signup.cy.js
0 → 100644
cypress/fixtures/admin.json
0 → 100644
cypress/fixtures/example.json
0 → 100644
cypress/support/commands.js
0 → 100644
cypress/support/e2e.js
0 → 100644
gitlabci.pub
deleted
100644 → 0
index.html
0 → 100644
jsconfig.json
0 → 100644
This diff is collapsed.
{ | { | ||
"name": "sib-app", | "name": "orbit", | ||
"version": "1.0.0", | "version": "2.0.0", | ||
"license": "MIT", | "license": "MIT", | ||
"private": true, | |||
"repository": { | |||
"type": "git", | |||
"url": "https://git.startinblox.com/applications/hubl.git" | |||
}, | |||
"scripts": { | "scripts": { | ||
"build": "run-p copy:* build:*", | "watch": "vite", | ||
"build:css": "node-sass src/styles/index.scss -o dist/styles/", | "build": "vite build", | ||
"build:js": "babel 'src/scripts/*.js' -o dist/scripts/index.js", | "serve": "vite preview", | ||
"build:html": "pug src/index.pug -o dist/ --obj config.json", | "cypress:open": "cypress open", | ||
"copy:font": "copyfiles -f src/fonts/* dist/fonts", | "cypress:verify": "cypress verify", | ||
"copy:image": "copyfiles -f src/images/* dist/images", | "cypress:info": "cypress info", | ||
"serve": "serve -l 3000 dist/", | "test": "cypress run" | ||
"watch": "run-p copy:* watch:* serve", | |||
"watch:css": "npm run build:css && npm run build:css -- -w", | |||
"watch:js": "babel --watch 'src/scripts/*.js' -o dist/scripts/index.js", | |||
"watch:pug": "pug --watch src/index.pug -o dist/ --obj config.json" | |||
}, | }, | ||
"browserslist": [ | |||
"last 2 Chrome versions" | |||
], | |||
"dependencies": { | "dependencies": { | ||
"@babel/cli": "^7.7.0", | "@lit/task": "^1.0.1", | ||
"@babel/core": "^7.7.0", | "@startinblox/orbit-styling-framework": "^1.9.21", | ||
"copyfiles": "^2.1.1", | "autoprefixer": "^10.4.20", | ||
"include-media": "^1.4.9", | "cssnano": "^7.0.6", | ||
"node-sass": "^4.13.0", | "default-composer": "^0.6.0", | ||
"normalize.css": "^8.0.1", | "lit": "^3.2.1", | ||
"npm-run-all": "^4.1.5", | "markdown-it": "^14.1.0", | ||
"pug": "^2.0.4", | "markdown-it-link-attributes": "^4.0.1", | ||
"pug-cli": "^1.0.0-alpha6", | "postcss": "^8.4.47", | ||
"serve": "^11.2.0" | "postcss-preset-env": "^9.6.0", | ||
"postcss-scss": "^4.0.9", | |||
"sass": "^1.80.6", | |||
"sweetalert2": "^11.14.5", | |||
"vite": "^5.4.10", | |||
"vite-plugin-handlebars": "^2.0.0", | |||
"vite-plugin-html": "^3.2.2", | |||
"vite-plugin-pwa": "^0.20.5" | |||
}, | |||
"devDependencies": { | |||
"cypress": "^13.15.2", | |||
"cypress-localstorage-commands": "^2.2.6" | |||
} | } | ||
} | } |