-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.68 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
{
"name": "salesforce-backwindow-web",
"version": "2.0.0",
"description": "A Salesforce login service that allows multiple users to # to multiple orgs without sharing any credentials or passwords",
"private": true,
"author": {
"name": "Shinichi Tomita",
"email": "shinichi.tomita@gmail.com"
},
"license": "MIT",
"main": "lib/server/app.js",
"scripts": {
"start": "node lib/server/app.js",
"start:dev": "ts-node src/server/app.ts",
"build": "run-p build:asset build:client build:server",
"build:asset": "cpx \"node_modules/@salesforce-ux/design-system/assets/**/*\" public/assets",
"build:client": "node ./esbuild.js",
"build:server": "esbuild src/server/app.ts --bundle --platform=node --target=node14 --outdir=lib/server",
"watch": "npm run build:client watch",
"typecheck": "tsc --noEmit",
"postinstall": "npm run build"
},
"devDependencies": {},
"dependencies": {
"@salesforce-ux/design-system": "^2.16.2",
"@types/axios": "^0.14.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^16.11.7",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"axios": "^0.24.0",
"cookie-parser": "^1.4.5",
"cpx": "^1.5.0",
"esbuild": "^0.13.13",
"express": "^4.17.1",
"express-session": "^1.17.2",
"google-auth-library": "^7.10.2",
"jsforce": "^2.0.0-beta.8",
"jsonwebtoken": "^8.5.1",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"swr": "^1.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}