-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.05 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
{
"name": "my-website",
"version": "1.0.0",
"scripts": {
"dev": "webpack-dev-server --mode development --open",
"build": "NODE_ENV='production' webpack --mode=production",
"deploy": "npm run build && gh-pages -d dist",
"convert-input": "ts-node data_processing/convert-input.ts",
"combine-routes": "ts-node data_processing/combine-routes.ts"
},
"private": true,
"dependencies": {
"@googlemaps/js-api-loader": "^2.0.2",
"axios": "^1.15.0",
"simple-parallax-js": "^6.3.3"
},
"devDependencies": {
"@types/geojson": "^7946.0.16",
"@types/node": "^25.3.0",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"gh-pages": "^6.3.0",
"html-webpack-plugin": "^5.6.6",
"mini-css-extract-plugin": "^2.10.0",
"sass": "^1.97.3",
"sass-loader": "^16.0.7",
"ts-loader": "^9.5.4",
"ts-node": "~10.9.2",
"tslib": "^2.8.1",
"typescript": "~5.9.3",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1",
"webpack-dev-middleware": "^7.4.5",
"webpack-dev-server": "^5.2.3"
}
}