summaryrefslogtreecommitdiff
path: root/client/package.json
diff options
context:
space:
mode:
authorSOGYO\bvdoord <bvdoord@sogyo.nl>2021-01-26 11:22:58 +0100
committerSOGYO\bvdoord <bvdoord@sogyo.nl>2021-01-26 11:22:58 +0100
commitf382ec567e1292cedee7c01e721ddc38bdc4dc4e (patch)
tree3012b3343d24c4d52f4370ca1f2efc4c78dbd84f /client/package.json
parent9fb9913bc5ccc49d738481fa71c5ba75c43ed532 (diff)
Front-end met Snowpack toegevoegd
Diffstat (limited to 'client/package.json')
-rw-r--r--client/package.json31
1 files changed, 31 insertions, 0 deletions
diff --git a/client/package.json b/client/package.json
new file mode 100644
index 0000000..859a76a
--- /dev/null
+++ b/client/package.json
@@ -0,0 +1,31 @@
+{
+ "name": "mancala-mvc",
+ "version": "1.0.0",
+ "description": "Front-end for the mancala mvc",
+ "private": true,
+ "scripts": {
+ "start": "snowpack dev",
+ "lint": "eslint src/**/*.{ts,tsx}"
+ },
+ "dependencies": {
+ "react": "^17.0.0",
+ "react-dom": "^17.0.0",
+ "react-router-dom": "^5.2.0"
+ },
+ "devDependencies": {
+ "@snowpack/plugin-dotenv": "^2.0.4",
+ "@snowpack/plugin-react-refresh": "^2.3.6",
+ "@snowpack/plugin-typescript": "^1.1.0",
+ "@types/react": "^16.9.49",
+ "@types/react-dom": "^16.9.8",
+ "@types/react-router-dom": "^5.1.7",
+ "@types/snowpack-env": "^2.3.0",
+ "@typescript-eslint/eslint-plugin": "^4.14.0",
+ "@typescript-eslint/parser": "^4.14.0",
+ "eslint": "^7.18.0",
+ "eslint-plugin-react": "^7.22.0",
+ "eslint-plugin-react-hooks": "^4.2.0",
+ "snowpack": "^2.17.0",
+ "typescript": "^4.0.0"
+ }
+}