-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (48 loc) · 1.48 KB
/
package.json
File metadata and controls
49 lines (48 loc) · 1.48 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": "codedocify",
"version": "1.0.0",
"description": "Documentation generator with web editor and search system",
"main": "index.js",
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"tailwind:watch": "npx tailwindcss -i ./src/editor/styles/tailwind.css -o ./public/assets/css/tailwind.css --watch",
"tailwind:build": "npx tailwindcss -i ./src/editor/styles/tailwind.css -o ./public/assets/css/tailwind.css --minify",
"start": "node src/index.js",
"doc:build": "node src/cli/buildDocs.js",
"search:build": "node search/indexBuilder.js",
"search:algolia": "node search/algoliaUploader.js"
},
"keywords": [
"documentation",
"generator",
"tailwind",
"twig",
"web-editor",
"search",
"algolia"
],
"author": "Mahamudul Hasan Rubel",
"license": "MIT",
"dependencies": {
"algoliasearch": "^4.22.0",
"fuse.js": "^6.6.2",
"nunjucks": "^3.2.4",
"twig": "^1.15.3",
"express": "^4.18.2"
},
"devDependencies": {
"autoprefixer": "^10.4.16",
"css-loader": "^6.8.1",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"style-loader": "^3.3.3",
"tailwindcss": "^3.4.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.3",
"babel-loader": "^9.1.3",
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4"
}
}