-
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.54 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.54 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": "wp-theme-boilerplate",
"version": "1.0.0",
"description": "WordPress boilerplate theme setup",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev": "concurrently \"npm run webpack:dev\" \"npm run node-sass:dev\"",
"build": "npm run webpack:build && npm run node-sass:build",
"webpack:dev": "webpack --env.mode=development --watch",
"webpack:build": "webpack --env.mode=production",
"node-sass:dev": "node-sass src/styles/main.scss -o assets/styles -w --source-map true",
"node-sass:build": "node-sass src/styles/main.scss -o assets/styles --source-map true --output-style compressed"
},
"keywords": [
"wordpress",
"boilerplate",
"javascript",
"css",
"webpack"
],
"author": "Muhammad Hasnain",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-loader": "^8.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"browser-sync": "^2.26.13",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"node-sass": "^4.14.1",
"prettier": "^2.1.1",
"stylelint": "^13.7.1",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-order": "^4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"lozad": "^1.16.0"
}
}