mirror of
https://github.com/informaticker/uek-109-LBb.git
synced 2024-11-22 17:51:58 +01:00
50 lines
1.1 KiB
JSON
50 lines
1.1 KiB
JSON
{
|
|
"name": "trafficcounter",
|
|
"version": "1.0.0",
|
|
"private": false,
|
|
"license": "GNU General Public License v3.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/modul-i-ch-109/counter"
|
|
},
|
|
"dependencies": {
|
|
"bcrypt": "^5.0.1",
|
|
"body-parse": "^0.1.0",
|
|
"config": "^3.3.7",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.0.3",
|
|
"epilogue": "^0.7.1",
|
|
"express": "^4.18.1",
|
|
"nodemon": "^2.0.20",
|
|
"pg": "^8.7.3",
|
|
"postgres": "^3.3.1",
|
|
"sequelize": "^6.25.5",
|
|
"sequelize-cli": "^6.5.2",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "nodemon src/index.js",
|
|
"start": "node src/index.js",
|
|
"build": "",
|
|
"test": "jest",
|
|
"db_create": "sequelize db:create",
|
|
"migrate": "npx sequelize-cli db:migrate",
|
|
"seed": "npx sequelize-cli db:seed:all"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "react-app"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|