-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.15 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
{
"name": "Orrery",
"version": "0.2.0",
"description": "Asteroid discovery visualization",
"main": "src/js/index.js",
"repository": "[email protected]:sn3p/Orrery.git",
"author": "Matthijs Kuiper <[email protected]>",
"license": "MIT",
"scripts": {
"setup": "cd data && ./download_data.sh && ./data_to_json.py",
"build": "webpack --mode production",
"deploy": "git subtree push --prefix dist origin gh-pages",
"watch": "webpack --mode development --watch",
"start": "webpack-dev-server --mode development --open"
},
"dependencies": {
"dat.gui": "^0.7.9",
"pixi.js": "^8.5.1"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"cssnano": "^7.0.6",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.2",
"mini-css-extract-plugin": "^2.9.1",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.7",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}