-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 874 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 874 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
31
32
33
34
{
"name": "client-toolchain-example",
"type": "module",
"private": true,
"version": "1.0.0",
"description": "Demo project for the MDN client-side web development tools tutorial.",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write .",
"test": "vitest"
},
"author": "mdn",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "9",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"dependencies": {
"@tanstack/react-query": "^5.100.5",
"plotly.js-dist-min": "^3.5.0",
"react": "^19.2.5",
"react-dom": "^19.2.5"
}
}