-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.59 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
{
"name": "OMNA",
"private": true,
"version": "1.2.0",
"description": "OMNA for Shopify. Sell Anywhere, Manage On One",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --https --config webpack.config.js",
"prebuild": "rimraf ./build",
"build": "webpack -p --progress --config webpack.config.js",
"deploy-dev": "npm run deploy-dev1 && npm run deploy-dev2",
"deploy-dev1": "aws s3 sync --acl public-read --profile cenit-io --delete --exclude '*' --include '*.js' --include '*.html' build/ s3://omna-dev",
"deploy-dev2": "aws s3 sync --acl public-read --profile cenit-io --delete --exclude '*.js' --size-only build/ s3://omna-dev",
"deploy-prod": "aws s3 sync --acl public-read --profile cenit-io --delete build/ s3://omna-ii",
"deploy-back": "aws s3 sync --acl public-read --profile cenit-io --delete build/ s3://omna-dev && npm run invalidate",
"invalidate-back": "aws cloudfront --profile cenit-io create-invalidation --distribution-id XYZ --paths '/*'"
},
"dependencies": {
"@shopify/polaris": "^3.3.0",
"pretty-ms": "^4.0.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-select3": "^4.0.1"
},
"devDependencies": {
"babel-core": "6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.3.3",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^2.28.0",
"rimraf": "^2.6.1",
"style-loader": "^0.16.1",
"uglifyjs-webpack-plugin": "^1.2.6",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
},
"license": "MIT"
}