-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.15 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
{
"name": "com.adobe.uxp.starter.react",
"version": "1.0.0",
"scripts": {
"preinstall": "npx npm-force-resolutions",
"watch": "nodemon -w src -e js,jsx,json,css,html -w webpack.config.js -x npm run build",
"build": "webpack --mode development",
"uxp:load": "cd dist && uxp plugin load",
"uxp:reload": "cd dist && uxp plugin reload",
"uxp:watch": "cd dist && nodemon --exec \"uxp plugin reload\" -e js,css,html",
"uxp:debug": "cd dist && uxp plugin debug"
},
"author": "Adobe Inc",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-class-properties": "^7.10.4",
"@babel/plugin-transform-react-jsx": "^7.8.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^2.0.2",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"file-loader": "^5.1.0",
"style-loader": "^1.1.3",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
},
"dependencies": {
"cross-env": "^7.0.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"resolutions": {
"acorn": "npm:acorn-with-stage3"
}
}