-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.51 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
{
"name": "product-evaluator",
"version": "0.1.0",
"description": "AI-powered product evaluation tool for software developers and founders",
"main": "index.js",
"scripts": {
"build:css": "npx tailwindcss -i ./src/css/input.css -o ./product_evaluator/static/css/main.css",
"watch:css": "npx tailwindcss -i ./src/css/input.css -o ./product_evaluator/static/css/main.css --watch",
"lint:js": "eslint ./product_evaluator/static/js",
"format:js": "prettier --write ./product_evaluator/static/js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gerome-Elassaad/product-evaluator.git"
},
"keywords": [
"ai",
"product",
"evaluation",
"decision",
"tool",
"fastapi",
"python"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Gerome-Elassaad/product-evaluator/issues"
},
"homepage": "https://github.com/Gerome-Elassaad/product-evaluator#readme",
"devDependencies": {
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"tailwindcss": "^3.4.0"
},
"dependencies": {
"chart.js": "^4.4.1",
"htmx.org": "^1.9.10"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"private": true,
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}