-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.41 KB
/
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
45
46
47
48
49
{
"devDependencies": {
"@cypress/code-coverage": "^3.9.11",
"@types/d3": "^7.1.0",
"@types/jquery": "^3.5.8",
"@types/lodash-es": "^4.17.5",
"@types/mousetrap": "^1.6.8",
"@types/plotly.js": "^1.54.16",
"cypress": "^13.6.2",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"parcel": "^2.12.0",
"prettier": "^1.19.1"
},
"name": "idvorkin.github.io",
"description": "This [blog](https://idvork.in) contains my [evergreen notes](https://notes.andymatuschak.org/z4SDCZQeRo4xFEQ8H4qrSqd68ucpgE6LU155C), and an [enabling environment](https://notes.andymatuschak.org/z3DaBP4vN1dutjUgrk3jbEeNxScccvDCxDgXe) to interact with them. These are currently intermingled, but",
"version": "1.0.0",
"module": "assets/js/idv-blog-module.js",
"targets": {
"default": {
"outputFormat": "esmodule"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/idvorkin/idvorkin.github.io.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/idvorkin/idvorkin.github.io/issues"
},
"homepage": "https://github.com/idvorkin/idvorkin.github.io#readme",
"dependencies": {
"force-graph": "^1.43.5",
"punycode": "^2.3.1",
"typescript": "^4.5.2"
},
"lint-staged": {
"*.{ts,css,html,json}": "prettier --write",
"*.py": [
"black"
],
"*.md": [
"prettier --write",
"markdownlint --fix"
]
}
}