-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "vis-client",
"packageManager": "[email protected]",
"type": "module",
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta2",
"@pixi/core": "^7.3.3",
"@pixi/display": "^7.3.3",
"d3": "^7.8.5",
"pixi-viewport": "^5.0.2",
"pixi.js": "^7.3.3",
"rbush": "^3.0.1"
},
"devDependencies": {
"@parcel/packager-raw-url": "2.13.3",
"@parcel/transformer-inline-string": "2.13.3",
"@parcel/transformer-webmanifest": "2.13.3",
"@types/d3": "^7.4.3",
"@types/eslint": "^8",
"@types/rbush": "^3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"buffer": "^5.5.0||^6.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"parcel": "^2.11.0",
"prettier": "^3.2.4",
"punycode": "^2.0.0",
"typescript": "^5.3.3",
"url": "^0.11.0"
},
"scripts": {
"start": "parcel static/index.html",
"build": "parcel build static/index.html --public-url https://vis.ordbokapi.org",
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix"
}
}