-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
29 lines (29 loc) · 876 Bytes
/
package.json
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": "conpa",
"description": "Asset allocation application",
"version": "7.4.1",
"repository": "http://github.com/albertosantini/node-conpa",
"keywords": [
"finance",
"asset allocation",
"optimization"
],
"author": "Alberto Santini",
"license": "MIT",
"scripts": {
"dev": "netlify dev",
"test": "npm run lint",
"lint": "eslint public functions",
"deploy": "netlify deploy",
"css": "NODE_ENV=production tailwindcss -o ./public/app/common/tailwind.css --minify",
"css-watch": "NODE_ENV=production tailwindcss -o ./public/app/common/tailwind.css --minify --watch"
},
"dependencies": {
"@supabase/supabase-js": "^2.0.4",
"finance": "^5.1.0"
},
"devDependencies": {
"eslint": "^8.16.0",
"tailwindcss": "^3.0.24"
}
}