-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.88 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
{
"name": "image-gallery",
"version": "1.0.0",
"description": "Adobe Creative Cloud Web Add-on.",
"keywords": [
"Adobe",
"Creative Cloud Web",
"Add-on",
"panel"
],
"scripts": {
"build": "ccweb-add-on-scripts build --use webpack",
"clean": "ccweb-add-on-scripts clean",
"fix": "npm run format && npm run lint",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json}'",
"postinstall": "echo \"Completed installing packages. Run \\x1b[104m\\x1b[97mnpm run setup:icons\\x1b[0m to install sample of icons.\"",
"lint": "eslint --quiet --fix '**/*.{js,jsx,ts,tsx,json}'",
"package": "ccweb-add-on-scripts package --use webpack",
"prepare": "husky || true",
"setup:icons": "node ./.setupicons.js",
"start": "ccweb-add-on-scripts start --use webpack"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@adobe/react-spectrum": "^3.35.1",
"@react-spectrum/theme-express": "^3.0.0-alpha.12",
"@spectrum-icons/express": "^3.0.0-alpha.17",
"@spectrum-icons/illustrations": "^3.6.11",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@adobe/ccweb-add-on-scripts": "^2.3.0",
"@babel/core": "7.24.9",
"@babel/preset-env": "7.24.8",
"@babel/preset-react": "7.24.7",
"@tabler/icons": "^3.11.0",
"babel-loader": "9.1.3",
"babel-preset-react-app": "10.0.1",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-react": "^7.34.4",
"file-loader": "^6.2.0",
"html-webpack-plugin": "5.6.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"sharp": "^0.33.4",
"style-loader": "3.3.4",
"webpack": "5.94.0",
"webpack-cli": "5.1.4"
}
}