-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 988 Bytes
/
package.json
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "advent-of-code",
"module": "system",
"version": "1.0.0",
"private": true,
"description": "advent-of-code",
"main": "index.js",
"author": "Francis Gregoire",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"devDependencies": {
"@types/node": "^13.13.5",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"mkdirp": "^1.0.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^3.0.6",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.1",
"typescript": "^3.8.3",
"webpack": "^5.41.1",
"webpack-cli": "^3.3.11",
"xml": "^1.0.1",
"xml-parse": "^0.4.0"
},
"scripts": {
"start": "rimraf out && tsc && node out/index.js",
"lint": "eslint ./src/**/* --ext .ts",
"format": "prettier --write 'src/**/*.ts'",
"build": "rimraf out && tsc"
},
"files": [
"out",
"package.json"
],
"dependencies": {
"axios": "^0.21.1",
"xml-parse": "^0.4.0"
}
}