-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.15 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
{
"name": "wp-theme",
"version": "0.0.1",
"homepage": "https://codetot.com",
"repository": {
"type": "git",
"url": "[email protected]/codetot-web/wp-theme.git"
},
"author": {
"name": "CODE TOT",
"email": "[email protected]",
"url": "https://codetot.com",
"role": "developer"
},
"scripts": {
"dev": "cross-env BABEL_ENV=default NODE_ENV=development webpack",
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack",
"fix": "prettier-standard --format '**/*.{php,js,scss}'",
"test": "prettier-standard --check '**/*.{php,json,js,scss}'"
},
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@wordpress/babel-preset-default": "^6.3.1",
"@wordpress/eslint-plugin": "^9.1.1",
"@wordpress/prettier-config": "^1.1.0",
"autoprefixer": "^10.3.3",
"babel-loader": "^8.2.2",
"babel-plugin-transform-react-jsx": "^6.24.1",
"browser-sync": "^2.27.5",
"browser-sync-webpack-plugin": "^2.3.0",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"mini-css-extract-plugin": "^2.2.0",
"postcss": "^8.4.4",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^6.2.1",
"postcss-scss": "^4.0.2",
"prettier": "^2.3.2",
"prettier-config-standard": "^5.0.0",
"prettier-eslint": "^13.0.0",
"prettier-standard": "^16.4.1",
"raw-loader": "^4.0.2",
"sass": "^1.44.0",
"sass-loader": "^12.3.0",
"source-map-resolve": "^0.6.0",
"style-loader": "^3.2.1",
"stylelint": "^13.13.1",
"stylelint-prettier": "^1.2.0",
"stylelint-webpack-plugin": "^3.1.1",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"@popperjs/core": "^2.11.0",
"body-scroll-lock": "^3.1.5",
"bootstrap": "^5.1.3",
"core-js": "^3.17.2",
"es6-promise": "^4.2.8",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}