-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 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
{
"name": "keymapdb",
"version": "1.0.0",
"description": "",
"scripts": {
"clean": "rimraf dist",
"start": "npm run serve",
"serve": "npm run clean && cross-env NODE_ENV=development eleventy --serve",
"watch": "npm run clean && cross-env NODE_ENV=development eleventy --watch",
"build": "npm run clean && cross-env NODE_ENV=production eleventy",
"debug": "DEBUG=Eleventy* npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/precondition/keymapdb.git"
},
"author": "Vladislav K.",
"license": "MIT",
"bugs": {
"url": "https://github.com/precondition/keymapdb/issues"
},
"homepage": "https://github.com/precondition/keymapdb#readme",
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@tailwindcss/typography": "^0.3.1",
"cross-env": "^7.0.3",
"html-minifier": "^4.0.0",
"luxon": "^2.5.2",
"rimraf": "^3.0.2",
"terser": "^4.8.1"
},
"dependencies": {
"@11ty/eleventy-upgrade-help": "^1.0.1",
"@tailwindcss/forms": "^0.2.1",
"eleventy-plugin-tailwindcss": "github:dafiulh/eleventy-plugin-tailwindcss"
}
}