-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.01 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
{
"name": "oursafetyclip",
"version": "1.0.0",
"description": "Developed by John Seong. Made using Eleventy static site generator and Tailwind CSS framework.",
"main": ".eleventy.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tailwind:process": "npx postcss static/css/style.css --o static/dist/output.css --watch",
"start": "concurrently \"npm run tailwind:process\" \"npm run serve\"",
"serve": "npx eleventy --serve",
"build": "env NODE_ENV=production npx eleventy --pathprefix 'rosetta-enforcer' --config='.eleventy.js'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-navigation": "^0.3.3",
"markdown-it": "^13.0.1",
"tailwindcss": "^3.0.24"
},
"dependencies": {
"concurrently": "^7.1.0",
"eleventy-plugin-toc": "^1.1.5",
"markdown-it-anchor": "^8.6.4",
"postcss": "^8.4.14"
}
}