-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
110 lines (110 loc) · 3.56 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
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
106
107
108
109
110
{
"name": "@adobe/aem-react-editable-components",
"version": "2.1.1",
"description": "Provides React components and integration layer with Adobe Experience Manager Page Editor.",
"keywords": [
"spa",
"aem",
"react",
"adobe"
],
"author": "Adobe Systems Inc. <[email protected]>",
"license": "Apache-2.0",
"repository": "github:adobe/aem-react-editable-components",
"homepage": "https://docs.adobe.com/content/help/en/experience-manager-65/developing/headless/spas/spa-reference-materials.html",
"bugs": {
"url": "https://github.com/adobe/aem-react-editable-components/issues"
},
"engines": {
"npm": ">=8.7.0",
"node": ">=12.16.2"
},
"main": "dist/aem-react-editable-components.js",
"types": "dist/types.d.ts",
"scripts": {
"build:prod": "NODE_ENV=production npm run build",
"build:types": "tsc -p tsconfig.base.json",
"build": "npm run lint && npm run build:types && webpack",
"clean": "rm -rf dist/ node_modules/ package-lock.json",
"docs": "npm i && npx typedoc --entryPoints ./src/types.ts --out ./dist/docs",
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"semantic-release": "semantic-release",
"test:coverage": "jest --clearCache && jest --coverage",
"test:debug": "jest --coverage --watchAll",
"test": "jest --clearCache && jest",
"watch": "webpack --watch"
},
"pre-commit": [
"lint"
],
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"sideEffects": false,
"dependencies": {
"@adobe/aem-spa-component-mapping": "~1.1.1",
"@braintree/sanitize-url": "^6.0.0"
},
"peerDependencies": {
"@adobe/aem-spa-page-model-manager": "^1.4.3"
},
"devDependencies": {
"@adobe/aem-spa-page-model-manager": "~1.5.0",
"@adobe/eslint-config-editorxp": "^1.0.8",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/register": "^7.17.7",
"@jest/globals": "^27.4.6",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^8.0.0",
"@testing-library/react": "^12.1.4",
"@types/clone": "^2.1.0",
"@types/jest": "^27.0.0",
"@types/node": "^17.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/webpack-node-externals": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"circular-dependency-plugin": "^5.2.2",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.5.1",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"process": "^0.11.10",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"semantic-release": "^19.0.0",
"ts-jest": "^27.0.0",
"ts-loader": "^9.0.0",
"typescript": "^4.2.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
},
"files": [
"dist/**/*.{js,ts,map}",
"!**/{docs,coverage}/"
]
}