-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 983 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 983 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
35
36
37
{
"name": "concretejs",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"webpack-build": "webpack --config webpack.config.cjs",
"webpack-dev": "webpack serve --config webpack.config.js --open"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@tailwindcss/postcss": "^4.0.13",
"autoprefixer": "^10.4.20",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.2",
"mini-css-extract-plugin": "^2.9.2",
"postcss": "^8.5.1",
"postcss-loader": "^8.1.1",
"style-loader": "^4.0.0",
"tailwindcss": "^4.0.0",
"vite": "^6.0.11",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"dependencies": {
"@tailwindcss/vite": "^4.0.0",
"chart.js": "^4.4.7",
"delaunator": "^5.0.1",
"plotly.js-dist-min": "^3.0.1",
"three": "^0.172.0"
}
}