-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
29 lines (29 loc) · 987 Bytes
/
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
{
"name": "lwc-react",
"version": "1.0.0",
"description": "This guide helps Salesforce developers who are new to Visual Studio Code go from zero to a deployed app using Salesforce Extensions for VS Code and Salesforce CLI.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx webpack react-app && cp dist/main.js force-app/main/default/staticresources/app.js",
"deploy": "npm run build && sfdx force:source:deploy -p force-app"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"@salesforce-ux/design-system": "^2.9.4",
"@salesforce/design-system-react": "^0.10.9",
"react": "16.8.3",
"react-dom": "^16.8.6",
"react-json-view": "^1.19.1"
}
}