aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2020-12-01 13:16:50 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2020-12-01 13:16:50 +0200
commit3328eb99625e7df28202e57cd8c159f8b7708ac5 (patch)
tree200b31e5a68454183e45e1316af408f7f4dfcdc0 /package.json
parent6064019df1049c929fae3daa1325ef9c8817d38c (diff)
Initial setup with TS
Diffstat (limited to 'package.json')
-rw-r--r--package.json29
1 files changed, 29 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..4c4ba7d
--- /dev/null
+++ b/package.json
@@ -0,0 +1,29 @@
+{
+ "name": "aoc-2020",
+ "version": "1.0.0",
+ "description": "Advent of code 2020",
+ "main": "index.js",
+ "scripts": {
+ "start": "ts-node index.ts",
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/jantuomi/aoc-2020.git"
+ },
+ "author": "",
+ "license": "ISC",
+ "bugs": {
+ "url": "https://github.com/jantuomi/aoc-2020/issues"
+ },
+ "homepage": "https://github.com/jantuomi/aoc-2020#readme",
+ "dependencies": {
+ "rxjs": "6.6.3",
+ "ts-node": "9.0.0",
+ "typescript": "4.1.2"
+ },
+ "devDependencies": {
+ "@types/node": "14.14.10",
+ "prettier": "2.2.1"
+ }
+}