-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.66 KB
/
package.json
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
{
"name": "crafty-theme",
"description": "Clean hand-crafted theme for Hugo.",
"version": "0.0.1",
"author": {
"name": "We Will Craft",
"email": "[email protected]",
"url": "https://willcraft.software"
},
"keywords": [
"gohugo",
"theme"
],
"private": true,
"scripts": {
"clean:scripts": "rimraf ./static/scripts",
"clean:styles": "rimraf ./static/styles",
"clean:data": "rimraf ./data/webpack_assets.json",
"clean": "npm-run-all clean:*",
"watch:webpack": "webpack --mode=development --config ./webpack.config.js --watch",
"watch": "cross-env NODE_ENV=development npm-run-all clean --parallel watch:*",
"build:webpack": "webpack --mode=production --config ./webpack.config.js",
"build": "cross-env NODE_ENV=production npm-run-all clean build:*",
"start": "run-s watch"
},
"homepage": "https://crafty-theme.willcraft.software",
"repository": {
"type": "git",
"url": "git+https://github.com/wewillcraft/crafty-theme.git"
},
"bugs": {
"url": "https://github.com/wewillcraft/crafty-theme/issues"
},
"license": "MIT",
"devDependencies": {
"assets-webpack-plugin": "^5.1.2",
"autoprefixer": "^9.0.0",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"husky": "^4.3.0",
"mini-css-extract-plugin": "^1.0.0",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^4.0.4",
"rimraf": "^3.0.2",
"sass": "^1.27.0",
"sass-loader": "^10.0.3",
"tailwindcss": "^1.8.13",
"terser-webpack-plugin": "^5.0.0",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
}
}