three.cad/package.json

38 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2021-03-20 19:08:15 +00:00
{
"scripts": {
2021-03-26 19:18:11 +00:00
"start": "webpack serve --config webpack.dev.js",
2021-04-01 08:20:50 +00:00
"build": "export NODE_ENV=production && webpack --config webpack.prod.js",
2021-03-23 03:55:44 +00:00
"get-bundle-size": "webpack --profile --json > stats.json --config webpack.prod.js && webpack-bundle-analyzer stats.json dist/",
2021-04-01 12:13:49 +00:00
"deploy": "export NODE_ENV=production && webpack --config webpack.prod.js && gh-pages -d dist -t true -m"
2021-03-20 19:08:15 +00:00
},
"devDependencies": {
2021-03-26 09:25:28 +00:00
"@babel/preset-react": "^7.12.13",
2021-04-02 00:19:14 +00:00
"@tailwindcss/jit": "^0.1.18",
2021-03-26 09:25:28 +00:00
"babel-loader": "^8.2.2",
2021-04-23 05:55:26 +00:00
"browser-fs-access": "^0.16.4",
2021-04-23 20:13:49 +00:00
"bson": "^4.3.0",
2021-04-23 10:54:55 +00:00
"copy-webpack-plugin": "^8.1.1",
2021-03-20 19:08:15 +00:00
"css-loader": "^5.1.3",
2021-03-23 03:55:44 +00:00
"gh-pages": "^3.1.0",
2021-04-06 04:52:19 +00:00
"immutability-helper": "^3.1.1",
2021-04-01 12:13:49 +00:00
"mini-css-extract-plugin": "^1.4.0",
2021-04-01 08:20:50 +00:00
"postcss": "^8.2.9",
"postcss-loader": "^5.2.0",
2021-03-26 09:25:28 +00:00
"react": "^17.0.2",
"react-dom": "^17.0.2",
2021-04-02 00:19:14 +00:00
"react-icons": "^4.2.0",
2021-03-26 09:25:28 +00:00
"react-redux": "^7.2.3",
2021-03-20 19:08:15 +00:00
"redux": "^4.0.5",
2021-03-28 12:00:31 +00:00
"redux-logger": "^3.0.6",
2021-03-20 19:08:15 +00:00
"stats-js": "^1.0.1",
2021-04-01 08:20:50 +00:00
"tailwindcss": "^2.0.4",
2021-03-20 19:08:15 +00:00
"three": "^0.126.1",
"webpack": "^5.26.3",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
2021-03-26 19:18:11 +00:00
"webpack-dev-server": "^3.11.2",
2021-04-23 23:22:33 +00:00
"webpack-merge": "^5.7.3",
"zlibjs": "^0.3.1"
2021-03-20 19:08:15 +00:00
}
}