This repository was archived by the owner on Jan 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 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
{
"name": "couchtree_website",
"version": "1.0.0",
"description": "The website of the CouchTree app",
"main": "index.js",
"repository": "https://github.com/stayathome1761/Website.git",
"author": "Markus Hülß <markus.huelss@devdungeon.de>",
"license": "MIT",
"scripts": {
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"start:dev": "webpack-dev-server --mode=development",
"watch": "webpack --watch",
"precommit": "lint-staged --allow-empty"
},
"husky": {
"hooks": {
"pre-commit": "yarn run precommit"
}
},
"lint-staged": {
"*.{js,json,css,less,md}": "prettier --semi false --trailing-Comma: es5 --write"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-loader": "^8.1.0",
"bulma": "^0.8.1",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.0.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"prettier": "^2.0.2",
"pug": "^2.0.4",
"pug-loader": "^2.4.0",
"purgecss-webpack-plugin": "^2.1.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}