-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.22 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.22 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
{
"name": "ad2ien-cv",
"version": "0.1.0",
"description": "An online resume made with Blow theme for Zola SSG built with tailwind css",
"scripts": {
"mkdir": "mkdir -p ./static/js && mkdir -p ./static/css",
"uglify": "uglifyjs-folder ./src/js/ -eo ./static/js -x .js",
"watch": "NODE_ENV=development postcss -d ./src/css/ -o ./static/css/ -w --verbose",
"dev": "npm run uglify && NODE_ENV=development postcss ./src/css/ -d ./static/css/ --verbose",
"prod": "npm run uglify && NODE_ENV=production postcss ./src/css/ -d ./static/css/ --verbose",
"test": "uglifyjs ./src/js/main.js --compress --mangle -o ./static/js/main.js",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ad2ien/ad2ien.github.io.git"
},
"keywords": [
"zola",
"ssg",
"theme",
"tailwindcss",
"tailwind",
"tchartron"
],
"author": "Adrien Touzouli",
"license": "MIT",
"homepage": "https://ad2ien.github.io/",
"devDependencies": {
"autoprefixer": "^10.4.27",
"cssnano": "^7.1.2",
"postcss": "^8.5.8",
"postcss-cli": "^11.0.1",
"tailwindcss": "^4.2.1",
"uglifyjs-folder": "^3.3.0"
},
"dependencies": {
"@tailwindcss/postcss": "^4.2.1"
}
}