-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.67 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"dependencies": {
"@elastic/elasticsearch": "^8.19.1",
"aws-sdk": "^2.1692.0",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"firebase-admin": "^13.4.0",
"helmet": "^8.1.0",
"joi": "^18.0.0",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"mysql2": "^3.14.3",
"nodemon": "^3.1.10",
"sequelize": "^6.37.7",
"sequelize-cli": "^6.6.3",
"winston": "^3.17.0"
},
"name": "smart-panchayat",
"version": "1.0.0",
"description": "Smart Panchayat is a digital solution designed to modernize and streamline Panchayat-level governance. It aims to provide a centralized platform for managing village-level administration, public services, and citizen engagement. The project focuses on digitizing records, improving service delivery, and enhancing transparency through technology.",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest --detectOpenHandles --forceExit",
"db:create": "sequelize-cli db:create",
"db:drop": "sequelize-cli db:drop",
"migrate": "sequelize-cli db:migrate",
"migrate:undo": "sequelize-cli db:migrate:undo",
"seed": "sequelize-cli db:seed:all",
"seed:undo": "sequelize-cli db:seed:undo:all",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"format": "prettier --write .",
"test:user": "jest src/tests/integration/user.test.js --detectOpenHandles --silent=false",
"test:shop": "jest src/tests/integration/shop.test.js --detectOpenHandles --silent=false",
"test:product": "jest src/tests/integration/product.test.js --detectOpenHandles --silent=false",
"test:category": "jest src/tests/integration/category.test.js --detectOpenHandles --silent=false",
"test:order": "jest src/tests/integration/order.test.js --detectOpenHandles --silent=false",
"test:shipment": "jest src/tests/integration/shipment.test.js --detectOpenHandles --silent=false",
"test:agent": "jest src/tests/integration/agent.test.js --detectOpenHandles --silent=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devi5040/Smart-Panchayat.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/devi5040/Smart-Panchayat/issues"
},
"homepage": "https://github.com/devi5040/Smart-Panchayat#readme",
"devDependencies": {
"@eslint/js": "^9.34.0",
"@eslint/json": "^0.13.2",
"@eslint/markdown": "^7.2.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.3.0",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"supertest": "^7.1.4"
}
}