-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·58 lines (58 loc) · 2.09 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
{
"version": "0.1.4",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"install": "node scripts/install.mjs",
"manifest": "shx rm -f plugin/manifest.json && npm run install",
"build": "webpack --mode production --config webpack.config.js",
"watch": "webpack --mode development --watch --config webpack.config.js"
},
"author": "Justin Walsh",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-constant-elements": "^7.14.5",
"@babel/plugin-transform-react-inline-elements": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/react": "^17.0.11",
"@types/react-dom": "^16.8.5",
"@typescript-eslint/eslint-plugin": "4.27.0",
"@typescript-eslint/parser": "4.27.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"clean-webpack-plugin": "^2.0.2",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"ejs": "^3.1.6",
"eslint": "7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^1.18.2",
"shx": "^0.3.3",
"source-map-loader": "^3.0.0",
"style-loader": "^1.1.3",
"typescript": "^4.3.4",
"uxp-types": "^0.1.2",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/runtime": "^7.14.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-uxp-spectrum": "^0.1.9"
}
}