-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.1 KB
/
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
30
31
32
33
34
35
36
37
38
{
"name": "tactical-thrift",
"description": "Suggests a possible Thrift Savings Plan allocation.",
"type": "module",
"scripts": {
"start": "concurrently npm:serve npm:sass",
"serve": "npx @11ty/eleventy --serve",
"build": "npx @11ty/eleventy",
"sass": "sass --watch _sass/styles.scss assets/stylesheets/styles.css",
"update-prices": "node bin/update-prices",
"update-positions": "node bin/update-positions",
"lint": "npx eslint bin/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jfredrickson/tactical-thrift.git"
},
"author": "Jeff Fredrickson <[email protected]>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/jfredrickson/tactical-thrift/issues"
},
"homepage": "https://github.com/jfredrickson/tactical-thrift#readme",
"engines": {
"node": ">=20.11.1"
},
"dependencies": {
"csv-parse": "^5.5.5",
"dayjs": "^1.11.11"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"sass": "^1.76.0"
}
}