-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "alvarcarto-designer",
"version": "1.0.0",
"private": true,
"browserslist": [
"last 3 versions",
"ie 9"
],
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-plugin-import": "^1.1.1",
"chokidar-cli": "^1.2.0",
"clean-css-cli": "^4.0.6",
"concurrently": "^3.3.0",
"gh-pages": "^0.12.0",
"less": "^2.7.2",
"less-plugin-glob": "^2.0.0",
"less-plugin-npm-import": "^2.1.0",
"postcss-cli": "^2.6.0",
"redux-logger": "^2.7.4"
},
"dependencies": {
"algolia-places-react": "^1.3.0",
"alvarcarto-common": "git+https://alvarcarto-integration:[email protected]/kimmobrunfeldt/alvarcarto-common.git#v7.0.5",
"alvarcarto-price-util": "git+https://alvarcarto-integration:[email protected]/kimmobrunfeldt/alvarcarto-price-util.git#v7.3.2",
"antd": "^3.23.2",
"auto-prefixer": "^0.4.2",
"axios": "^0.15.3",
"bluebird": "^3.4.7",
"common-tags": "^1.4.0",
"currency-formatter": "^1.5.5",
"customize-cra": "^0.7.0",
"debounce-promise": "^2.1.1",
"flux-standard-action": "^1.2.0",
"geolib": "^2.0.22",
"history": "^4.5.1",
"i18n-iso-countries": "^1.8.0",
"iframe-resizer": "^3.5.15",
"leaflet": "^1.3.4",
"normalize.css": "^5.0.0",
"odometer": "^0.4.7",
"prop-types": "^15.7.2",
"qs": "^6.5.0",
"query-string": "^5.1.1",
"raven-js": "^3.12.1",
"react": "^16.9.0",
"react-addons-css-transition-group": "^15.6.2",
"react-app-rewired": "^2.1.3",
"react-dom": "^16.9.0",
"react-imageloader": "^3.0.0",
"react-leaflet": "^2.4.0",
"react-redux": "^7.1.1",
"react-responsive": "^8.0.1",
"react-responsive-carousel": "^3.1.50",
"react-scripts": "^3.1.1",
"react-select": "^1.3.0",
"react-sizeme": "^2.6.7",
"redux": "^3.6.0",
"redux-analytics": "^0.3.1",
"redux-thunk": "^2.2.0",
"request-promise": "^4.1.1",
"webfontloader": "^1.6.27"
},
"scripts": {
"minify-css": "cleancss ./src/bundle.css -o ./src/bundle.css",
"build-css": "lessc --npm-import --glob ./src/styles/index.less ./src/bundle.css && npm run postcss",
"postcss": "postcss --use autoprefixer ./src/bundle.css -o ./src/bundle.css",
"watch-css": "npm run build-css && chokidar \"src/**/*.less\" \"./src/styles/**/*.css\" -c \"npm run build-css\"",
"start": "REACT_APP_BRANCH=$(git rev-parse --abbrev-ref HEAD) concurrently \"react-app-rewired start\" \"npm run watch-css\"",
"build": "npm run build-css && react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "npm run build && gh-pages -d build"
}
}