This repository has been archived on 2024-08-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
khufu/package.json

54 lines
1.3 KiB
JSON
Raw Normal View History

2021-07-24 23:06:32 -06:00
{
2021-08-06 19:56:59 -06:00
"name": "khufu",
"version": "1.0.0",
2021-07-24 23:06:32 -06:00
"private": true,
2021-08-14 17:58:07 -06:00
"author": "Dunemask",
"license": "LGPL-2.1",
2021-07-24 23:06:32 -06:00
"dependencies": {
2021-08-06 19:56:59 -06:00
"http-proxy-middleware": "^2.0.1",
"express": "^4.17.1"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
2021-07-31 17:56:04 +00:00
"js-file-download": "^0.4.12",
2021-07-24 23:06:32 -06:00
"react": "^17.0.2",
"react-axios": "^2.0.5",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.4",
"react-fontawesome": "^1.7.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-toastify": "^7.0.4",
2021-08-06 19:56:59 -06:00
"sass": "^1.37.5"
2021-07-24 23:06:32 -06:00
},
"scripts": {
2021-08-14 17:56:29 -06:00
"start": "node server/index.js",
"start:dev": "nodemon server/index.js",
"start:react": "react-scripts start",
"build:react": "react-scripts build",
"build:all": "npm run build:react && docker-compose build"
2021-07-24 23:06:32 -06:00
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}