-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.06 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.06 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "wpreact",
"version": "1.0.0",
"description": "WordPress Starter Theme",
"main": "index.js",
"author": "Thrive Web",
"license": "MIT",
"scripts": {
"build": "webpack --mode=production",
"start": "webpack --watch",
"eslint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"eslint:fix": "eslint \"src/**/*.{js,jsx}\" --quiet --fix",
"format": "prettier --write \"src/**/*.{js,jsx,scss}\"",
"stylelint": "stylelint \"src/**/*.{css,scss}\"",
"stylelint:fix": "stylelint \"src/**/*.{css,scss}\" --fix",
"wp-pot": "wp-pot --src '*.php' --dest-file 'languages/_s.pot' --domain '_s'"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.1.5",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"browser-sync": "^2.24.7",
"browser-sync-webpack-plugin": "^2.2.2",
"css-loader": "^1.0.0",
"css-mqpacker": "^7.0.0",
"eslint": "^5.6.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-prettier": "^2.6.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^2.0.0",
"img-loader": "^3.0.0",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.14.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"stylelint": "^9.5.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-config-wordpress": "^13.1.0",
"stylelint-order": "^1.0.0",
"stylelint-scss": "^3.3.0",
"stylelint-webpack-plugin": "^0.10.5",
"svg-sprite-loader": "^4.1.1",
"svgo": "^1.1.1",
"svgo-loader": "^2.2.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"wp-pot-cli": "^1.2.1"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-loader": "^1.1.2"
}
}