-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "@brainstormforce/starter-templates-components",
"version": "1.0.0",
"author": "Brainstorm Force",
"description": "Starter Templates Component Library.",
"main": "./build/index.js",
"engines": {
"npm": ">=9.5.0 <10.3.0",
"node": ">=18.15.0 <19.0.0"
},
"volta": {
"node": "18.15.0"
},
"scripts": {
"start": "webpack --watch --mode development",
"build": "webpack --mode production",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format:js": "wp-scripts format-js",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js ./src/",
"lint:js:fix": "wp-scripts lint-js ./src/ --fix"
},
"keywords": [
"reactjs",
"components"
],
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@wordpress/scripts": "^26.19.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.3.0",
"sass": "^1.32.0",
"sass-loader": "^10.1.0",
"style-loader": "^1.0.1",
"svg-url-loader": "^7.1.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"@wordpress/eslint-plugin": "^9.3.0",
"prettier": "npm:wp-prettier@^2.8.5",
"wp-prettier": "^2.8.5"
},
"dependencies": {
"@wordpress/html-entities": "^3.2.3",
"@wordpress/i18n": "^4.2.4",
"react": "^18.2.0",
"react-dom": "^18.0.8",
"use-debounce": "^7.0.1"
}
}