-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.93 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
59
60
61
62
63
64
65
66
67
68
{
"name": "salesforce-migration-app-pack",
"version": "1.2.2",
"main": "build/node/index.js",
"types": "build/node/index.d.ts",
"scripts": {
"lint": "eslint --fix && prettier --write ./src",
"typecheck": "tsc --noEmit",
"build": "run-p build:*",
"build:src": "babel --extensions '.ts,.tsx' --out-dir build src",
"build:type": "tsc --declaration --emitDeclarationOnly",
"build:bundle": "webpack --mode=production",
"start": "webpack serve",
"test": "jest"
},
"files": [
"build",
"data",
"dist",
"src",
"index.html",
"tsconfig.json"
],
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.15.3",
"adm-zip": "^0.5.5",
"csv-parse": "^4.16.0",
"fs-extra": "^10.0.0",
"jsforce": "^1.10.1",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"recoil": "^0.4.0",
"salesforce-migration-automatic": "^3.1.3"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/node": "^7.14.9",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/adm-zip": "^0.4.34",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^27.0.1",
"@types/jsforce": "^1.9.34",
"@types/node": "^16.6.1",
"@types/react": "^17.0.18",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.6",
"node-polyfill-webpack-plugin": "^1.1.4",
"prettier": "^2.3.2",
"typescript": "^4.3.5",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^3.11.2"
}
}