1
- package.json
1
+ {
2
+ "name" : " codedocify" ,
3
+ "version" : " 1.0.0" ,
4
+ "description" : " Documentation generator with web editor and search system" ,
5
+ "main" : " index.js" ,
6
+ "scripts" : {
7
+ "dev" : " webpack --mode development" ,
8
+ "build" : " webpack --mode production" ,
9
+ "tailwind:watch" : " npx tailwindcss -i ./src/editor/styles/tailwind.css -o ./public/assets/css/tailwind.css --watch" ,
10
+ "tailwind:build" : " npx tailwindcss -i ./src/editor/styles/tailwind.css -o ./public/assets/css/tailwind.css --minify" ,
11
+ "start" : " node src/index.js" ,
12
+ "doc:build" : " node src/cli/buildDocs.js" ,
13
+ "search:build" : " node search/indexBuilder.js" ,
14
+ "search:algolia" : " node search/algoliaUploader.js"
15
+ },
16
+ "keywords" : [
17
+ " documentation" ,
18
+ " generator" ,
19
+ " tailwind" ,
20
+ " twig" ,
21
+ " web-editor" ,
22
+ " search" ,
23
+ " algolia"
24
+ ],
25
+ "author" : " Mahamudul Hasan Rubel" ,
26
+ "license" : " MIT" ,
27
+ "dependencies" : {
28
+ "algoliasearch" : " ^4.22.0" ,
29
+ "fuse.js" : " ^6.6.2" ,
30
+ "nunjucks" : " ^3.2.4" ,
31
+ "twig" : " ^1.15.3" ,
32
+ "express" : " ^4.18.2"
33
+ },
34
+ "devDependencies" : {
35
+ "autoprefixer" : " ^10.4.16" ,
36
+ "css-loader" : " ^6.8.1" ,
37
+ "postcss" : " ^8.4.31" ,
38
+ "postcss-loader" : " ^7.3.3" ,
39
+ "style-loader" : " ^3.3.3" ,
40
+ "tailwindcss" : " ^3.4.1" ,
41
+ "webpack" : " ^5.91.0" ,
42
+ "webpack-cli" : " ^5.1.4" ,
43
+ "webpack-dev-server" : " ^5.0.3" ,
44
+ "babel-loader" : " ^9.1.3" ,
45
+ "@babel/core" : " ^7.24.4" ,
46
+ "@babel/preset-env" : " ^7.24.4"
47
+ }
48
+ }
49
+
0 commit comments