-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.24 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.24 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
{
"name": "commitconf-store",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"clean": "rm -rf .build _site",
"==": "========== Build ===========",
"build:sass": "bin/compile-css",
"build:js": "NODE_ENV=production npx webpack --config webpack.config.ts",
"build:eleventy": "dotenv -e .env.production -- tsx ./node_modules/.bin/eleventy --config=eleventy.config.ts",
"build": "npm run clean; npm-run-all build:sass build:js build:eleventy",
"===": "========== Watch ===========",
"watch:sass": "inotifywait -m -r -e close_write,create,delete src/_sass/ | while read NEWFILE; do npm run build:sass && cp css/*.css _site/css/; done",
"watch:js": "NODE_ENV=development npx webpack --config webpack.config.ts --watch",
"watch:eleventy": "sleep 2 && ENV=development dotenv -e .env.development -- npx tsx ./node_modules/.bin/eleventy --config=eleventy.config.ts --serve",
"watch": "npm run clean && npm run build:sass && npm-run-all -p watch:sass watch:js watch:eleventy",
"debug": "DEBUG=* npm run watch"
},
"keywords": [],
"author": "Carlos Coloma",
"license": "ISC",
"description": "",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@babel/core": "^7.25.9",
"@babel/plugin-transform-optional-chaining": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.25.9",
"@babel/preset-typescript": "^7.25.9",
"@babel/register": "^7.25.9",
"@fullhuman/postcss-purgecss": "^6.0.0",
"@tsconfig/recommended": "^1.0.7",
"@types/node": "^22.7.7",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"babel-plugin-lodash": "^3.3.4",
"cssnano": "^7.0.6",
"dotenv-cli": "^7.4.4",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"lodash-webpack-plugin": "^0.11.6",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.80.3",
"terser-webpack-plugin": "^5.3.10",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@splidejs/splide": "^4.1.4"
}
}