-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.83 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
{
"name": "customer-wallet",
"version": "0.1.0",
"homepage": ".",
"dependencies": {
"@material-ui/codemod": "^1.1.0",
"@material-ui/core": "^3.1.0",
"@material-ui/icons": "^3.0.0",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"chlu-api-client": "ChluNetwork/chlu-api-client-js#semver:~0.3.0",
"chlu-ipfs-support": "ChluNetwork/chlu-ipfs-support#semver:~0.2.5",
"chlu-marketplace-js": "ChluNetwork/chlu-marketplace-js#semver:~0.4.0",
"classnames": "^2.2.6",
"history": "^4.7.2",
"js-file-download": "^0.4.1",
"lodash": "^4.17.4",
"mapbox-gl": "^0.47.0",
"moment": "^2.20.1",
"money": "^0.2.0",
"multihashes": "^0.4.13",
"npm-run-all": "^4.1.2",
"prop-types": "^15.5.10",
"query-string": "^6.1.0",
"react": "^16.3.2",
"react-avatar-editor": "^11.0.4",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.3.2",
"react-file-reader-input": "^2.0.0",
"react-helmet": "^5.0.0",
"react-redux": "^5.0.7",
"react-redux-toastr": "^7.2.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "1.1.1",
"react-select": "2.0.0",
"react-star-rating-component": "^1.3.0",
"react-swipeable-views": "^0.12.13",
"recompose": "^0.27.1",
"redux": "^4.0.0",
"redux-actions": "^2.3.2",
"redux-form": "^7.3.0",
"redux-thunk": "^2.2.0",
"superagent": "^3.6.0"
},
"resolutions": {
"node-forge": "0.7.5"
},
"scripts": {
"start": "react-scripts start",
"xstart": "cross-env NODE_PATH=./src react-scripts start",
"build": "react-scripts build",
"prebuild": "cp webpack.config.prod.js node_modules/react-scripts/config",
"postbuild": "npx uglify-es build/static/js/main.*.js -o build/static/js/$(ls build/static/js | head -n 1)",
"deploy-s3": "npm run delete-source-maps && aws s3 sync build/ s3://demo.chlu.io --delete --exclude index.html --acl public-read && aws s3 sync build/ s3://demo.chlu.io --exclude '*' --include index.html --acl public-read --cache-control 'max-age=0'",
"deploy-ipfs": "npm run delete-source-maps && node ./deploy.js",
"delete-source-maps": "find ./build -name *.map -type f -delete",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint ."
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.19.0",
"eslint-config-react-app": "^2.0.0",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.1",
"immutability-helper": "^2.3.1",
"jest-enzyme": "^3.8.2",
"redux-mock-store": "^1.3.0"
},
"engines": {
"node": "^8.9.4"
}
}