generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.07 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
{
"name": "@adobe/aem-boilerplate",
"private": true,
"version": "1.3.0",
"description": "Starter project for Adobe Helix with React",
"target": "module",
"type": "module",
"scripts": {
"lint:js": "eslint .",
"lint:css": "stylelint blocks/**/*.css styles/*.css",
"lint": "npm run lint:js && npm run lint:css",
"add": "plop",
"start": "webpack serve --mode development",
"build": "webpack --mode production",
"analyze": "webpack --mode production --profile --json > stats.json && webpack-bundle-analyzer ./stats.json dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/aem-boilerplate.git"
},
"author": "Muthu Kumaran",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/adobe/aem-boilerplate/issues"
},
"homepage": "https://github.com/adobe/aem-boilerplate#readme",
"dependencies": {
"graphql": "^16.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"urql": "^4.0.6"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "7.24.7",
"@babel/preset-react": "^7.23.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"babel-loader": "^9.1.3",
"copyfiles": "^2.4.1",
"css-loader": "^6.10.0",
"css-minimizer-webpack-plugin": "^6.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.8.1",
"plop": "^4.0.1",
"prettier": "^3.2.5",
"stylelint": "16.6.1",
"stylelint-config-standard": "36.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.5.2",
"webpack": "^5.90.3",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.3"
}
}