Skip to content

Commit

Permalink
Release 1.1.1 (#2)
Browse files Browse the repository at this point in the history
* Pin package.json

Fixes https://github.com/apolopena/qna-demo-skeleton/issues

* run yarn install

Fixes #1
  • Loading branch information
apolopena authored Jan 27, 2022
1 parent f01b70f commit 68474c7
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gp/bash/init-project.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ all_zeros='^[0]+$'
# Load spinner
. .gp/bash/spinner.sh

# Use this projects package json
yarn install

# remove unused scaffolding
[[ -f resources/js/components/Example.js ]] && rm resources/js/components/Example.js
[[ -f resources/views/welcome.blade.php ]] && rm resources/views/welcome.blade.php
Expand Down
38 changes: 38 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production"
},
"devDependencies": {
"@babel/preset-react": "^7.13.13",
"@types/node": "^15.0.3",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.4",
"@types/react-router-dom": "^5.1.7",
"axios": "^0.21",
"bootstrap": "^4.6.0",
"jquery": "^3.6",
"laravel-mix": "^6.0.6",
"lodash": "^4.17.19",
"popper.js": "^1.16.1",
"postcss": "^8.1.14",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"resolve-url-loader": "^3.1.2",
"sass": "^1.32.11",
"sass-loader": "^11.0.1",
"ts-loader": "^9.1.2",
"typescript": "^4.2.4"
},
"dependencies": {
"browser-sync": "^2.26.14",
"browser-sync-webpack-plugin": "^2.3.0",
"react-router-dom": "^5.2.0"
}
}

0 comments on commit 68474c7

Please sign in to comment.