This repository was archived by the owner on Feb 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.44 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
43
44
45
46
47
48
49
{
"name": "codetohtml",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:site": "ELEVENTY_ENV=production npx @11ty/eleventy",
"dev:site": "ELEVENTY_ENV=development npx @11ty/eleventy --serve",
"build:assets": "webpack --mode=production",
"dev:assets": "webpack --mode=development --watch",
"dev": "npm run dev:assets && npm run dev:site",
"build": "npm run build:assets && npm run build:site"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bootstrap": "^5.1.4",
"@types/gtag.js": "^0.0.7",
"@types/prettier": "^2.3.2",
"bootstrap": "^5.1.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"cssnano": "^5.0.8",
"date-fns": "^2.24.0",
"glob": "^7.1.7",
"glob-all": "^3.2.1",
"handlebars-loader": "^1.7.1",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.3.0",
"node-sass": "^6.0.1",
"postcss": "^8.3.6",
"prettier": "^2.4.0",
"purgecss-webpack-plugin": "^4.0.3",
"sass": "^1.39.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^5.2.4",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1",
"webpack-manifest-plugin": "^4.0.2"
},
"dependencies": {
"highlight.js": "^11.2.0"
}
}