forked from ChuckJonas/bad-ass-salesforce-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 4.45 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "bad-ass-salesforce-stack",
"version": "0.1.0",
"description": "React, Redux, Typescript, antd, ts-force, sfdx starter",
"author": "Charlie Jonas",
"homepage": "",
"repository": {
"type": "git",
"url": "git+https://github.com/ChuckJonas/bad-ass-salesforce-stack.git"
},
"bugs": "https://github.com/ChuckJonas/bad-ass-salesforce-stack/issues",
"license": "MIT",
"main": "dist/app.js",
"scripts": {
"start": "webpack-dashboard -m -- webpack-dev-server --config config/webpack.config.js --open --env.local",
"start-remote": "webpack-dashboard -m -- webpack-dev-server --config config/webpack.config.js --https",
"cors-enable": "sfdx force:mdapi:deploy -d ./config/sfdc-cors-enable -w 10000",
"cors-disable": "sfdx force:mdapi:deploy -d ./config/sfdc-cors-disable -w 10000",
"clean": "rimraf dist",
"compile-dev": "npm run clean && webpack --config config/webpack.config.js --env.build --env.sourceMap",
"compile-prod": "npm run clean && webpack --config config/webpack.config.js --env.build --env.sourceMap",
"new-scratch-org": "sfdx force:org:create -f config/project-scratch-def.json -a $npm_config_scratch_alias",
"make-scratch-default": "sfdx force:config:set defaultusername=$npm_config_scratch_alias",
"make-dev-default": "sfdx force:config:set defaultusername=$npm_config_dev_alias",
"make-prod-default": "sfdx force:config:set defaultusername=$npm_config_prod_alias",
"bundle-app-dev": "npm run compile-dev && npm run copy-bundle",
"bundle-app-prod": "npm run compile-prod && npm run copy-bundle",
"copy-bundle": "zip -j ./force-app/main/default/staticresources/app.zip ./dist/app.js ./dist/app.js.map && mv ./force-app/main/default/staticresources/app.zip ./force-app/main/default/staticresources/app.resource",
"package-sfdc": "sfdx force:source:convert -d ./dist/sfdc-package",
"build-dev": "npm run bundle-app-dev && npm run package-sfdc",
"build-prod": "npm run bundle-app-prod && npm run package-sfdc",
"push-dev": "sfdx force:mdapi:deploy -u $npm_config_dev_alias -d ./dist/sfdc-package -w 10000",
"push-scratch": "sfdx force:source:push -u $npm_config_scratch_alias",
"push-prod": "sfdx force:mdapi:deploy -u $npm_config_prod_alias -d ./dist/sfdc-package -w 10000",
"deploy-dev": "npm run build-dev && npm run push-dev",
"deploy-scratch": "npm run build-dev && npm run push-scratch",
"deploy-prod": "npm run build-prod && npm run push-prod",
"generate-ts-force": "ts-force-gen -j ./config/ts-force-config.json",
"test": "jest --no-cache --config jest.json",
"test:update": "jest --no-cache --config jest.json -u",
"reinstall": "rm -rf node_modules && npm install",
"reinstall:win": "rd /s /q node_modules && npm"
},
"dependencies": {
"antd": "^3.0.0",
"babel-jest": "^21.0.2",
"babel-polyfill": "^6.26.0",
"csstips": "^0.2.0",
"immutability-helper": "^2.4.0",
"lodash": "^4.17.4",
"query-string": "^5.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"ts-force": "^1.0.35",
"tslib": "^1.6.1",
"typestyle": "^1.3.2"
},
"devDependencies": {
"@types/enzyme": "^3.1.5",
"@types/enzyme-adapter-react-16": "^1.0.1",
"@types/jest": "^22.2.2",
"@types/node": "^7.0.14",
"@types/react": "^16.0.26",
"@types/react-dom": "^16.0.3",
"@types/react-hot-loader": "^3.0.1",
"@types/react-redux": "^5.0.9",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"@types/webpack": "^3.5.5",
"@types/webpack-dev-server": "^2.3.0",
"@types/webpack-env": "^1.13.0",
"awesome-typescript-loader": "^3.1.3",
"babel-loader": "^7.1.2",
"babel-plugin-import": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.7",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"html-webpack-plugin": "^2.28.0",
"husky": "^0.13.3",
"jest": "^22.2.2",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"less-vars-to-js": "^1.2.0",
"react-hot-loader": "^3.0.0-beta.7",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.6.1",
"style-loader": "^0.18.2",
"ts-jest": "^22.4.2",
"tslint": "^5.1.0",
"tslint-react": "^3.0.0",
"typescript": "^2.8.1",
"webpack": "^3.5.5",
"webpack-dashboard": "^1.0.0",
"webpack-dev-server": "^2.3.0"
}
}