-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 761 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 761 Bytes
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
{
"name": "orders-percentage",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js",
"import-plans": "node scripts/import-plans.js",
"import-b2s": "node scripts/import-b2s-plans.js",
"analyze-plans": "node scripts/analyze-supabase-plans.js",
"setup-permissions": "node scripts/setup-example-permissions.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"node-fetch": "^2.7.0",
"pg": "^8.16.3"
},
"devDependencies": {
"nodemon": "^3.1.11"
}
}