computer-graphics-study/package.json

35 lines
791 B
JSON
Raw Normal View History

2021-09-02 17:46:36 +09:00
{
"name": "computer-graphics-study",
"version": "1.0.0",
"description": "study computer graphics",
"scripts": {
"start": "parcel index.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
2021-10-09 23:43:17 +09:00
"staticFiles": {
"staticPath": [
{
"staticPath": "assets",
"staticOutDir": "assets"
}
]
},
"devDependencies": {
2021-10-10 02:07:34 +09:00
"@parcel/transformer-glsl": "^2.0.0-rc.0",
2021-10-09 23:43:17 +09:00
"@types/react": "^17.0.27",
"parcel": "^2.0.0-rc.0",
"webgl-strict-types": "^1.0.5"
},
2021-09-02 17:46:36 +09:00
"dependencies": {
2021-09-28 17:51:14 +09:00
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
2021-10-09 23:43:17 +09:00
"@mui/material": "^5.0.3",
"gl-matrix": "^3.4.3",
2021-09-28 17:51:14 +09:00
"react": "^17.0.2",
2021-10-09 23:43:17 +09:00
"react-dom": "^17.0.2",
"webgl-obj-loader": "^2.0.8"
2021-09-02 17:46:36 +09:00
}
}