-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.67 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.67 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
{
"name": "com.commit-conf.2023",
"version": "0.0.1",
"description": "Commit Conf 2023 website",
"scripts": {
"clean": "rm -rf ./_site/* ./build/css/* ./build/js/*",
"build:sass": "bin/compile-css",
"build:js": "NODE_ENV=production webpack-cli",
"build:eleventy": "npx @11ty/eleventy",
"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; done",
"watch:webpack": "NODE_ENV=development webpack-cli --watch",
"watch:eleventy": "ENV=dev npx @11ty/eleventy --serve --port=8081",
"watch": "npm run clean; npm-run-all build:sass --parallel watch:*"
},
"author": "Carlos Coloma",
"license": "Apache-2.0",
"browserslist": "> 0.5%, last 2 versions, not dead",
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@babel/core": "^7.17.12",
"@babel/plugin-proposal-optional-chaining": "^7.17.12",
"@babel/plugin-transform-runtime": "^7.17.12",
"@babel/preset-env": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@tsconfig/recommended": "^1.0.1",
"babel-loader": "^8.2.5",
"babel-plugin-lodash": "^3.3.4",
"fork-ts-checker-webpack-plugin": "^7.2.11",
"lodash-webpack-plugin": "^0.11.6",
"npm-run-all": "^4.1.5",
"parcel": "^2.5.0",
"postcss": "^8.4.13",
"postcss-cli": "^9.1.0",
"sass": "^1.51.0",
"sharp-cli": "^4.1.0",
"svgo": "^3.0.2",
"terser-webpack-plugin": "^5.3.1",
"typescript": "^4.8.3",
"webpack": "^5.72.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2"
}
}