forked from FiQCI/fiqci.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.65 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.65 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "fiqci-website",
"config": {
"jekyll": {
"source": "./content",
"configFilename": "_config.yml",
"webpackConfigFilename": "_config_webpack.yml"
},
"webpack": {
"outputDir": "./dist",
"reactPagesDir": "./src/pages, ./src/views"
},
"tailwindcss": {
"inputDir": "./src/stylesheets"
},
"conc": {
"colors": "blue.bold,cyan.bold,red.bold"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tailwindcss": "npx tailwindcss --input=${npm_package_config_tailwindcss_inputDir}/main.css --output=${npm_package_config_webpack_outputDir}/main.css",
"webpack": "npx webpack",
"jekyll": "bundle exec jekyll",
"jekyll:serve": "npm run-script jekyll -- serve --config ${npm_package_config_jekyll_configFilename},${npm_package_config_jekyll_webpackConfigFilename} --livereload --host ${JEKYLL_HOST:-127.0.0.1}",
"jekyll:build": "npm run-script jekyll -- build --config ${npm_package_config_jekyll_configFilename},${npm_package_config_jekyll_webpackConfigFilename}",
"clean": "npm run-script jekyll -- clean --config ${npm_package_config_jekyll_configFilename},${npm_package_config_jekyll_webpackConfigFilename} && rm ${npm_package_config_jekyll_webpackConfigFilename}",
"watch": "npx concurrently --kill-others --prefix-colors ${npm_package_config_conc_colors} --passthrough-arguments 'npm:tailwindcss -- {1}' 'npm:webpack -- --mode=development {1}' 'npm:jekyll:serve -- --livereload' -- --watch",
"build": "npm run-script tailwindcss && npm run-script webpack -- --mode=production && npm run-script jekyll:build",
"start": "npm run-script tailwindcss && npm run-script webpack -- --mode=development && npm run-script jekyll:serve"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@eslint/js": "^9.18.0",
"@tailwindcss/typography": "^0.5.15",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"concurrently": "^9.1.2",
"css-loader": "^7.1.2",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.14",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"yaml": "^2.7.0"
},
"dependencies": {
"@cscfi/csc-ui": "^2.3.0",
"@cscfi/csc-ui-react": "^2.3.0",
"date-fns": "^4.1.0",
"dompurify": "^3.2.4",
"framer-motion": "^12.23.22",
"front-matter": "^4.0.2",
"gray-matter": "^4.0.3",
"katex": "^0.16.21",
"lunr": "^2.3.9",
"prismjs": "^1.30.0",
"react-calendar": "^6.0.0"
},
"private": "true"
}