-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (75 loc) · 2.63 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "webpack-typescript-sass-wp-plugin",
"version": "1.0.0",
"description": "WordPress Plugin Boilerplate",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/doubledropco/webpack-typescript-sass-wp-plugin.git"
},
"author": "Jon Sakas <[email protected]> (https://doubledrop.co)",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/doubledropco/webpack-typescript-sass-wp-plugin/issues"
},
"homepage": "https://github.com/doubledropco/webpack-typescript-sass-wp-plugin#readme",
"scripts": {
"dev": "WEBPACK_ENV=development APP_ENV=development webpack --watch --progress",
"build": "rm -rf dist && WEBPACK_ENV=production APP_ENV=production webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:styles": "stylelint \"**/*.scss\"",
"lint:scripts": "eslint . --ext .ts,.tsx",
"lint": "yarn lint:styles && yarn lint:scripts",
"lint:fix": "yarn lint:styles --fix && yarn lint:scripts --fix",
"modernizr": "modernizr -c .modernizr.json -d src/scripts/"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@types/jquery": "^3.3.38",
"@types/react": "^16.9.41",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-bootstrap": "^1.0.1",
"@types/react-dom": "^16.9.8",
"@types/wordpress__block-editor": "^2.2.8",
"@types/wordpress__blocks": "^6.4.9",
"@types/wordpress__compose": "^3.4.2",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.1",
"@wordpress/babel-preset-default": "^4.13.0",
"@wordpress/blocks": "^6.16.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.6.0",
"eslint": "^7.4.0",
"eslint-plugin-react": "^7.20.3",
"file-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-loader": "^3.0.0",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"stylelint": "^13.6.1",
"stylelint-a11y": "^1.2.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0",
"ts-loader": "^8.0.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@wordpress/api-fetch": "^3.20.0",
"@wordpress/block-editor": "^3.11.0",
"@wordpress/blocks": "^6.16.0",
"@wordpress/dependency-extraction-webpack-plugin": "^2.8.0",
"clsx": "^1.1.1",
"color": "^3.1.3",
"core-js": "^3.6.5",
"jquery": "^3.5.1",
"polished": "^4.0.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"use-debounce": "^5.1.0"
}
}