-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
99 lines (99 loc) · 3.39 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
{
"name": "aem-genai-assistant",
"version": "2.6.2",
"private": true,
"scripts": {
"prepare": "husky install",
"preview": "npm run prebuild && REACT_APP_VERSION=$npm_package_version aio app run",
"grammar": "nearleyc web-src/src/helpers/expressions.ne -o web-src/src/helpers/Parser.generated.js",
"prompts": "node scripts/generate-prompts.js",
"prebuild": "npm run prompts && npm run grammar",
"build": "REACT_APP_VERSION=$npm_package_version aio app build",
"deploy:app": "npm run build && REACT_APP_VERSION=$npm_package_version aio app deploy --no-actions --no-build",
"deploy:actions": "npm run build && aio app deploy --no-web-assets --no-build",
"predeploy": "npm run prebuild",
"deploy": "REACT_APP_VERSION=$npm_package_version node scripts/deploy.js",
"lint": "eslint --quiet 'web-src/src/**/*.js' 'actions/*.js'",
"fix": "eslint --fix --quiet 'web-src/src/**/*.js' 'actions/*.js'",
"pretest": "npm run prebuild",
"test": "jest --collectCoverageFrom='[\"web-src/src/**/*.js\",\"actions/**/*.js\"]' --coverage --passWithNoTests ./actions ./web-src/src ./e2e",
"localize": "npm run harvest && npm run aladdin-put && npm run aladdin-get",
"harvest": "harvest",
"aladdin-put": "aladdin --command put",
"aladdin-get": "aladdin --command get"
},
"dependencies": {
"@adobe/aio-sdk": "3.0.0",
"@adobe/exc-app": "1.2.10",
"@adobe/generator-add-action-generic": "0.2.9",
"@adobe/react-spectrum": "3.35.1",
"@emotion/css": "11.11.2",
"@emotion/react": "11.11.1",
"@launchdarkly/node-server-sdk": "^9.4.0",
"@react-spectrum/toast": "3.0.0-beta.6",
"@spectrum-icons/illustrations": "3.6.7",
"@spectrum-icons/workflow": "4.2.6",
"chalk": "^4.0.0",
"exceljs": "4.4.0",
"file-saver": "2.0.5",
"framer-motion": "10.16.5",
"jsdom": "24.0.0",
"localforage": "1.10.0",
"nearley": "2.20.1",
"papaparse": "5.4.1",
"prismjs": "1.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "4.0.11",
"react-intl": "6.6.4",
"react-simple-code-editor": "0.13.1",
"react-transition-group": "4.4.5",
"react-slick": "0.30.2",
"recoil": "0.7.7",
"slick-carousel": "1.8.1",
"uuid": "9.0.1",
"wretch": "2.7.0"
},
"devDependencies": {
"@adobe/aio-cli": "10.0.0",
"@adobe/eslint-config-helix": "2.0.2",
"@babel/core": "7.18.6",
"@babel/eslint-parser": "7.19.1",
"@babel/plugin-transform-react-jsx": "7.22.15",
"@babel/polyfill": "7.8.7",
"@babel/preset-env": "7.8.7",
"@babel/preset-react": "7.23.3",
"@openwhisk/wskdebug": "1.3.0",
"@parcel/transformer-sass": "2.10.2",
"@semantic-release/changelog": "6.0.3",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.1.2",
"babel-jest": "29.7.0",
"babel-plugin-formatjs": "10.5.14",
"eslint": "8.53.0",
"eslint-plugin-formatjs": "4.13.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unused-imports": "3.0.0",
"husky": "8.0.3",
"inquirer": "8.2.6",
"jest": "29",
"jest-environment-jsdom": "29.7.0"
},
"engines": {
"node": ">=18"
},
"aio-app-builder-templates": [
"@adobe/generator-add-action-generic"
],
"@parcel/resolver-default": {
"packageExports": true
},
"targets": {
"default": {
"sourceMap": {
"inline": true
}
}
}
}