-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
147 lines (147 loc) · 5.72 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "reactor-extension-alloy",
"version": "2.27.0",
"description": "The Adobe Experience Platform Web SDK allows for streaming data into the platform, syncing identities, personalizing content, and more.",
"author": {
"name": "Adobe",
"url": "http://adobe.com",
"email": "[email protected]"
},
"license": "Apache-2.0",
"scripts": {
"add-license": "./scripts/add-license.mjs",
"build:alloy": "./scripts/buildAlloy.mjs",
"build:componentFixtures": "./scripts/buildComponentFixtures.mjs",
"build:extensionManifest": "./scripts/buildExtensionManifest.mjs",
"build:lib": "./scripts/buildLib.mjs",
"build:views": "./scripts/buildViews.mjs",
"build": "npm-run-all -p build:alloy build:componentFixtures build:extensionManifest build:lib build:views",
"watch:lib": "./scripts/buildLib.mjs --watch",
"watch:views": "./scripts/buildViews.mjs --watch",
"watch": "npm-run-all -p build:alloy build:componentFixtures build:extensionManifest watch:lib watch:views",
"clean": "rimraf dist extension.json",
"dev": "npm-run-all -p watch sandbox",
"format": "prettier --write \"*.{js,jsx,html,mjs,cjs}\" \"{src,test,scripts}/**/*.{js,jsx,html,mjs,cjs}\"",
"lint": "eslint \"*.{js,jsx}\" \"{src,test,scripts}/**/*.{js,jsx}\" --cache --fix",
"package": "npm run clean && NODE_ENV=production npm run build && npx @adobe/reactor-packager@latest",
"precommit-msg": "echo 'Running pre-commit scripts...' && exit 0",
"prepare": "husky",
"prepush-msg": "echo 'Running pre-push scripts...' && exit 0",
"sandbox": "./scripts/buildExtensionManifest.mjs && reactor-sandbox",
"test:unit": "karma start --single-run",
"test:unit:coverage": "karma start --single-run --reporters spec,coverage",
"test:unit:saucelabs": "karma start karma.saucelabs.conf.js --single-run",
"test:unit:watch": "karma start",
"test:unit:watch:chrome": "karma start --browsers Chrome",
"test:functional": "npm run build && testcafe chrome --esm test/functional/specs",
"test:functional:component": "npm run build:componentFixtures && testcafe --esm chrome test/functional/specs/component",
"test:functional:runtime": "npm-run-all -p build:alloy build:lib && testcafe --esm chrome test/functional/specs/runtime",
"test:functional:view": "npm-run-all -p build:extensionManifest build:views && testcafe --esm chrome test/functional/specs/view",
"test:functional:watch": "testcafe --esm --live chrome test/functional/specs/**/*.spec.mjs",
"test": "npm run test:unit; npm run test:functional",
"token": "node scripts/token.mjs",
"version": "./scripts/version.sh"
},
"lint-staged": {
"./*.{js,jsx}": [
"eslint --cache --fix"
],
"./{src,test,scripts}/**/*.{js,jsx}": [
"eslint --cache --fix"
],
"./*.{js,jsx,html}": [
"prettier --write"
],
"./{src,test,scripts}/**/*.{js,jsx,html}": [
"prettier --write"
]
},
"dependencies": {
"@adobe/alloy": "^2.24.0",
"@adobe/react-spectrum": "^3.37.1",
"@react-stately/data": "^3.11.7",
"@spectrum-css/tokens": "^14.6.0",
"@spectrum-css/typography": "^6.1.3",
"@spectrum-icons/illustrations": "^3.6.16",
"@spectrum-icons/workflow": "^4.2.15",
"antd": "^5.21.6",
"classnames": "^2.5.1",
"clipboard-copy": "^4.0.1",
"escape-string-regexp": "^5.0.0",
"formik": "^2.4.6",
"once": "^1.4.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"uuid": "^11.0.2",
"yup": "^1.4.0"
},
"devDependencies": {
"@adobe/auth-token": "^1.0.0",
"@adobe/reactor-sandbox": "^13.1.0",
"@adobe/reactor-turbine": "^28.0.0",
"@adobe/reactor-turbine-schemas": "^10.6.0",
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@parcel/core": "^2.12.0",
"@parcel/transformer-stylus": "^2.12.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"ajv": "^8.17.1",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^3.0.1",
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
"babel-plugin-version": "^0.2.3",
"chalk": "^5.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ban": "^1.6.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-testcafe": "^0.2.1",
"eslint-plugin-unused-imports": "^3.2.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"jasmine-core": "^5.4.0",
"json": "^11.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-jasmine-matchers": "^5.0.0",
"karma-rollup-preprocessor": "^7.0.8",
"karma-sauce-launcher": "^4.3.6",
"karma-spec-reporter": "0.0.36",
"lint-staged": "^15.2.10",
"minimist": "^1.2.8",
"mockvisitor": "file:test/functional/runtime/mockVisitor",
"npm-run-all": "^4.1.5",
"parcel": "^2.12.0",
"parcel-transformer-extension-name": "file:scripts/helpers/parcel-transformer-extension-name",
"prettier": "^3.3.3",
"process": "^0.11.10",
"puppeteer": "^23.6.1",
"rimraf": "^6.0.1",
"rollup": "^4.24.3",
"rollup-plugin-istanbul": "^5.0.0",
"staged-git-files": "^1.3.0",
"stylus": "^0.64.0",
"testcafe": "^3.6.2",
"testcafe-browser-provider-saucelabs": "^3.0.0"
},
"overrides": {
"karma-sauce-launcher": {
"webdriverio": "^8.35.1"
}
}
}