-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.39 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.39 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
{
"name": "shotplot",
"version": "4.1.0",
"description": "A tool used to obtain spacial coordinates based on an ice hockey rink",
"author": "Andrew Pucci",
"license": "GPL-3.0",
"scripts": {
"browserslist:update": "npx update-browserslist-db@latest",
"clean": "rm -rf dist",
"assets:build": "vite build --mode production",
"assets:build:dev": "vite build --mode development",
"assets:watch": "vite build --watch --mode development",
"lint": "eslint .",
"site:build:dev": "ELEVENTY_ENV=development eleventy",
"site:build:prod": "ELEVENTY_ENV=production eleventy",
"dev": "npm run clean && npm run assets:build:dev && (npm run assets:watch & ELEVENTY_ENV=development eleventy --serve)",
"prod": "npm run clean && npm run assets:build && npm run site:build:prod",
"build": "npm run prod"
},
"repository": {
"type": "git",
"url": "https://github.com/andrewpucci/shotplot"
},
"dependencies": {
"bootstrap": "^5.3.8",
"tabulator-tables": "^6.3.1"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@eslint/js": "^9.20.0",
"eslint": "^9.20.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-security": "^3.0.1",
"globals": "^17.3.0",
"sass": "^1.97.3",
"stylelint": "^17.1.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^7.0.1",
"stylelint-scss": "^7.0.0",
"vite": "^7.3.1"
}
}