-
- Downloads
Builds using webpack but doesn't do much yet
parents
No related branches found
No related tags found
Showing
- .gitignore 3 additions, 0 deletions.gitignore
- index.html 15 additions, 0 deletionsindex.html
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 23 additions, 0 deletionspackage.json
- src/components/CardView.ts 10 additions, 0 deletionssrc/components/CardView.ts
- src/components/GameHeaderView.ts 14 additions, 0 deletionssrc/components/GameHeaderView.ts
- src/index.ts 21 additions, 0 deletionssrc/index.ts
- src/model/Card.ts 18 additions, 0 deletionssrc/model/Card.ts
- styles.css 5 additions, 0 deletionsstyles.css
- tsconfig.json 16 additions, 0 deletionstsconfig.json
- webpack.config.js 80 additions, 0 deletionswebpack.config.js
.gitignore
0 → 100644
index.html
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "chemcards", | ||
"version": "1.0.0", | ||
"description": "A game to learn chemistry", | ||
"private": true, | ||
"scripts": { | ||
"build": "webpack", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "Will Billingsley", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"css-loader": "^1.0.0", | ||
"ts-loader": "^4.4.2", | ||
"typescript": "^2.9.2", | ||
"vue": "^2.5.16", | ||
"vue-class-component": "^6.2.0", | ||
"vue-loader": "^15.2.6", | ||
"vue-template-compiler": "^2.5.16", | ||
"webpack": "^4.16.2", | ||
"webpack-cli": "^3.1.0" | ||
} | ||
} |
src/components/CardView.ts
0 → 100644
src/components/GameHeaderView.ts
0 → 100644
src/index.ts
0 → 100644
src/model/Card.ts
0 → 100644
styles.css
0 → 100644
tsconfig.json
0 → 100644
webpack.config.js
0 → 100644
Please register or sign in to comment