-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.2 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.2 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
{
"name": "david-toolkit",
"version": "0.1.0",
"private": false,
"description": "A browser-first retail intelligence demo for independent shop owners.",
"type": "module",
"scripts": {
"import": "node scripts/import-silver.mjs",
"build:gold": "node scripts/build-gold.mjs",
"build:demo": "node scripts/build-demo.mjs",
"build": "npm run build:demo",
"build:full": "npm run import && npm run build:gold && npm run build:demo",
"update": "npm run import && npm run build:gold && npm run build:demo",
"serve": "node scripts/serve.mjs",
"dev": "npm run build:demo && npm run serve",
"test": "npm run build:full && node scripts/verify-data.mjs",
"test:unit": "node scripts/lib/csv-utils.test.mjs && node scripts/lib/transaction-aggregator.test.mjs",
"classify": "node scripts/classify-products.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/Grassroot-hoppers/david-toolkit.git"
},
"keywords": [
"retail",
"open-source",
"inventory",
"forecasting",
"grassroot-hoppers"
],
"author": "Julien Thibaut",
"license": "AGPL-3.0-only",
"devDependencies": {
"@playwright/test": "^1.58.2",
"playwright": "^1.58.2"
}
}