-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.21 KB
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
{
"name": "vis.gl",
"version": "0.1.0",
"private": true,
"repository": "git@github.com:visgl/vis.gl.git",
"engines": {
"node": ">=24.14.0"
},
"packageManager": "yarn@4.18.0",
"workspaces": [
"website"
],
"scripts": {
"dev": "yarn --cwd website start",
"build": "yarn --cwd website build && node scripts/assemble-project-sites.mjs",
"check": "yarn lint && yarn test && yarn build",
"lint": "eslint .",
"prepare": "husky",
"test": "node --test scripts/*.test.mjs",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"classnames": "^2.5.1",
"luma.gl": "^6.3.0",
"markdown-it": "^15.0.1",
"math.gl": "^2.3.0",
"react": "19.2.8",
"react-dom": "19.2.8"
},
"devDependencies": {
"@babel/core": "^8.0.1",
"@types/markdown-it": "^14.2.0",
"@types/node": "^22.20.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@typescript-eslint/parser": "^8.41.0",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^17.4.1",
"prettier": "^3.9.6",
"typescript": "^5.9.3",
"yaml-loader": "^0.9.0"
}
}