-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.94 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
{
"name": "layer-genie",
"version": "1.0.0",
"description": "Layer Genie Adobe Photoshop Plugin",
"main": "index.js",
"author": "Bilal Zeidan",
"repository": "github:zeidanbm/layer-genie",
"homepage": "https://github.com/zeidanbm/layer-genie#readme",
"keywords": [
"Adobe",
"Photoshop",
"generator",
"plugins",
"nfts",
"art"
],
"license": "MIT",
"scripts": {
"watch": "webpack -w --mode development",
"build": "webpack --mode production",
"lint": "eslint --fix ./src/**/*.ts ./src/**/*.tsx",
"test": "jest",
"coverage": "jest --coverage"
},
"url": "https://github.com/zeidanbm/layer-genie/issues",
"email": "[email protected]",
"devDependencies": {
"@jest/types": "^28.1.3",
"@types/jest": "^28.1.7",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.7.11",
"@types/photoshop": "^23.0.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"autoprefixer": "^10.4.8",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.22.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jsdom": "^20.0.0",
"postcss": "^8.4.16",
"postcss-loader": "^7.0.1",
"prettier": "^2.7.1",
"style-loader": "^3.3.1",
"tailwindcss": "^3.1.8",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"uxp-types": "^0.1.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@adobe/react-spectrum": "^3.20.0",
"js-sha256": "^0.9.0",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-uxp-spectrum": "^0.1.10"
}
}