forked from roadmapsh/deprecated-version
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.83 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "roadmap-next",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"clean": "rimraf _site && rimraf .cache",
"dev:tailwind": "npx tailwindcss -i src/_includes/styles/main.css -o _site/styles/main.css --watch",
"dev:eleventy": "npx @11ty/eleventy --serve --incremental",
"dev": "NODE_ENV=dev npm-run-all clean --parallel dev:*",
"build:tailwind": "npx tailwindcss -i src/_includes/styles/main.css -o _site/styles/main.css --minify",
"build:eleventy": "npx @11ty/eleventy",
"build": "NODE_ENV=production npm-run-all clean build:eleventy",
"deploy": "NODE_DEBUG=gh-pages gh-pages -d _site -t",
"sync-content": "sh ./bin/sync-content.sh",
"bench": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"upgrade": "ncu -u"
},
"keywords": [],
"author": "Kamran Ahmed<[email protected]",
"bugs": {
"url": "https://github.com/kamranahmedse/developer-roadmap/issues"
},
"homepage": "https://github.com/kamranahmedse/developer-roadmap#readme",
"devDependencies": {
"@11ty/eleventy": "2.0.0-canary.16",
"@11ty/eleventy-fetch": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"@minify-html/node": "^0.10.3",
"clean-css": "^5.3.1",
"common-tags": "^1.8.2",
"esbuild": "^0.16.8",
"gh-pages": "^4.0.0",
"gray-matter": "^4.0.3",
"hasha": "^5.2.2",
"html-minifier": "^4.0.0",
"jsdom": "^20.0.3",
"json-to-pretty-yaml": "^1.2.2",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.5",
"markdown-it-class": "^1.0.0",
"markdown-it-kbd": "^2.2.2",
"markdown-it-mark": "^3.0.1",
"npm-check-updates": "^16.6.0",
"npm-run-all": "^4.1.5",
"outdent": "^0.8.0",
"rimraf": "^3.0.2",
"tailwindcss": "^3.2.4",
"terser": "^5.16.1"
},
"dependencies": {
"roadmap-renderer": "^1.0.1"
}
}