You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.6 KiB
JSON
57 lines
1.6 KiB
JSON
{
|
|
"name": "fullstackopen-cicd",
|
|
"version": "1.0.4",
|
|
"description": "Full Stack Open",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"dev": "webpack-dev-server --open --mode development",
|
|
"start-test": "NODE_ENV=test node app.js",
|
|
"start": "node app.js",
|
|
"test": "jest",
|
|
"eslint": "eslint './**/*.{js,jsx}'",
|
|
"build": "webpack --mode production",
|
|
"test:e2e": "npx cypress run"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/smartlyio/fullstackopen-cicd.git"
|
|
},
|
|
"keywords": [
|
|
"fullstack-open"
|
|
],
|
|
"author": "Smartly.io",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/smartlyio/fullstackopen-cicd/issues"
|
|
},
|
|
"homepage": "https://github.com/smartlyio/fullstackopen-cicd#readme",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.9.6",
|
|
"@babel/plugin-transform-runtime": "^7.10.0",
|
|
"@babel/preset-env": "^7.9.6",
|
|
"@babel/preset-react": "^7.9.4",
|
|
"@testing-library/jest-dom": "^5.8.0",
|
|
"@testing-library/react": "^10.0.4",
|
|
"babel-jest": "^25.5.1",
|
|
"babel-loader": "^8.1.0",
|
|
"css-loader": "^3.5.3",
|
|
"eslint": "^6.8.0",
|
|
"eslint-plugin-jest": "^23.11.0",
|
|
"eslint-plugin-react": "^7.19.0",
|
|
"html-loader": "^1.1.0",
|
|
"html-webpack-plugin": "^4.3.0",
|
|
"jest": "^25.5.4",
|
|
"style-loader": "^1.2.1",
|
|
"webpack": "^4.43.0",
|
|
"webpack-cli": "^3.3.11",
|
|
"webpack-dev-server": "^3.11.0"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.19.2",
|
|
"express": "^4.17.1",
|
|
"react": "^16.13.1",
|
|
"react-dom": "^16.13.1",
|
|
"react-router-dom": "^5.2.0"
|
|
}
|
|
}
|