-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.65 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.65 KB
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
{
"name": "salesforce-react-integration",
"version": "2.1.0",
"author": "Philippe Ozil",
"description": "Sample integration project between Salesforce and a React application",
"license": "see LICENSE file",
"private": true,
"type": "module",
"main": "server/server.js",
"dependencies": {
"@salesforce-ux/design-system": "^2.28.1",
"browserify": "^17.0.1",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-session": "^1.18.2",
"jsforce": "^3.10.8",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"babelify": "^10.0.0",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"prettier": "^3.6.2",
"uglify-js": "^3.19.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"prettier": "prettier --write \"**/*.{css,html,js,json,md}\"",
"build": "rm -fr public/scripts && mkdir -p public/scripts && browserify -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] client/*.js | uglifyjs > public/scripts/bundle.min.js",
"start": "node server/index.js",
"build-n-start": "npm run build && npm run start",
"preinstall": "rm -fr public/assets",
"postinstall": "cp -r node_modules/@salesforce-ux/design-system/assets public"
},
"keywords": [
"React",
"Salesforce",
"Lightning",
"SLDS"
],
"repository": {
"type": "git",
"url": "https://github.com/pozil/salesforce-react-integration"
},
"engines": {
"node": ">= 22.0.0"
},
"volta": {
"node": "22.20.0"
}
}