-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.87 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.87 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@bigbite/build-tools",
"version": "2.0.0",
"description": "Provides configuration for the Big Bite Build Tools.",
"author": "Paul Taylor <paul@bigbite.net> (https://github.com/ampersarnie)",
"engines": {
"node": ">=18.20.6",
"npm": ">=8.19.2"
},
"keywords": [
"webpack",
"babel",
"prettier",
"linting",
"eslint",
"stylelint",
"wordpress",
"wp"
],
"homepage": "https://github.com/bigbite",
"bugs": {
"url": "https://github.com/bigbite/built-tools/issues"
},
"license": "MIT",
"prettier": "./configs/prettier.js",
"tsconfig": "./configs/tsconfig.json",
"eslintConfig": {
"extends": "./configs/eslint"
},
"bin": {
"build-tools": "./src/cli.js"
},
"jest": {
"testPathIgnorePatterns": [
"node_modules",
".yalc"
]
},
"scripts": {
"test": "jest --verbose",
"test:watch": "jest --watch --verbose"
},
"dependencies": {
"@babel/core": "^7.14.8",
"@babel/eslint-parser": "^7.14.9",
"@babel/eslint-plugin": "^7.14.5",
"@babel/plugin-proposal-pipeline-operator": "^7.14.8",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/plugin-transform-optional-chaining": "^7.23.4",
"@babel/preset-env": "^7.14.9",
"@babel/preset-react": "^7.14.5",
"@svgr/webpack": "^6.2.1",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@wordpress/eslint-plugin": "^22.5.0",
"@wordpress/scripts": "^30.12.0",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"chalk": "^4.1.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.1",
"cssnano": "^5.0.7",
"dts-loader": "^0.1.8",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-webpack-plugin": "^3.0.1",
"file-loader": "^6.2.0",
"inquirer": "^8.2.0",
"lodash": "^4.17.21",
"ora": "^4.1.1",
"postcss": "^8.4.40",
"postcss-loader": "^6.1.1",
"postcss-ms-unit": "0.0.2",
"postcss-pseudo-class-enter": "^5.0.0",
"postcss-pxtorem": "^6.0.0",
"postcss-reporter": "^7.0.2",
"postcss-scss": "^4.0.9",
"prettier": "^3.5.1",
"react": "^18.3.1",
"resolve-url-loader": "^4.0.0",
"rework": "^1.0.1",
"rework-visit": "^1.0.0",
"sass": "^1.55.0",
"sass-loader": "^16.0.5",
"stylelint": "15.0.0",
"stylelint-scss": "^5.3.2",
"stylelint-use-logical": "^2.1.2",
"stylelint-webpack-plugin": "^4.1.1",
"svg-sprite-loader": "^6.0.9",
"terminal-kit": "^2.1.8",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"url-loader": "^4.1.1",
"webpack": "^5.101.3",
"yargs": "^17.2.1"
},
"devDependencies": {
"jest": "^29.4.3",
"memfs": "^4.9.4",
"unionfs": "^4.5.4"
}
}