-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.36 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
{
"name": "wp-template",
"version": "1.0.0",
"description": "Project to add webpack for JS and SCSS to a Wordpress template",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev": "webpack -w --mode development",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bohndezdev/wp-template.git"
},
"keywords": [
"wordpress",
"js",
"scss",
"webpack"
],
"author": "Boris Hernández <bohndez.dev@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bohndezdev/wp-template/issues"
},
"homepage": "https://github.com/bohndezdev/wp-template#readme",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"autoprefixer": "^9.0.0",
"babel-loader": "^8.1.0",
"css-loader": "^4.2.0",
"extract-loader": "^5.1.0",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-minify": "^0.3.2",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"php-loader": "^0.2.0",
"postcss-loader": "^4.0.3",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}