-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 757 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "advent-of-code-2019",
"version": "1.0.0",
"description": "Implementation of the challenges in Javascript",
"main": "src/day1.js",
"author": "Sun-tea",
"license": "MIT",
"scripts": {
"build": "webpack",
"watch": "webpack --watch"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/preset-env": "^7.2.0",
"@babel/preset-typescript": "^7.1.0",
"@types/node": "^10.12.12",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"eslint": "^5.9.0",
"jest": "^23.6.0",
"typescript": "^3.2.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"ramda": "^0.26.0"
}
}