-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
39
{
"name": "fitness.trovster.com",
"version": "1.0.0",
"description": "Fitness Cards and Activity Rings Demo.",
"homepage": "https://fitness.trovster.com",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/trovster/fitness.trovster.com.git"
},
"author": {
"name": "Trevor Morris",
"email": "[email protected]",
"url": "https://www.trovster.com"
},
"keywords": [
"11ty",
"eleventy",
"tailwindcss",
"fitness",
"health",
"web components"
],
"license": "ISC",
"scripts": {
"start": "npx tailwindcss -i ./src/css/site.css -c tailwind.config.js -o ./dist/css/site.css --watch & npx @11ty/eleventy --serve",
"build": "NODE_ENV=production npx tailwindcss -i ./src/css/site.css -c tailwind.config.js -o ./dist/css/site.css --minify && MY_ENVIRONMENT=production npx @11ty/eleventy",
"test": "echo \"Warning: No tests\" && exit 0"
},
"dependencies": {
"@trovster/fitness-visualisations": "^1.0.0"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"dotenv": "^16.3.1",
"tailwindcss": "^3.3.3"
}
}