-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.97 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.97 KB
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
{
"name": "tipple-shop",
"homepage": "https://tipple.com.au",
"version": "4.6.4",
"private": true,
"dependencies": {
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.5.5",
"@splitsoftware/splitio": "10.8.2",
"@types/react-select": "^5.0.1",
"axios": "0.19.0",
"braintree-web-drop-in": "1.20.0",
"classnames": "2.2.6",
"cookie-parser": "1.4.4",
"core-js": "3.2.1",
"date-fns": "1.30.1",
"dotenv": "8.1.0",
"formik": "1.5.8",
"ignore-styles": "5.0.1",
"install": "0.13.0",
"js-cookie": "2.2.1",
"markdown-to-jsx": "6.11.1",
"md5-file": "4.0.0",
"morgan": "1.9.1",
"proxy": "^1.0.2",
"react": "^16.13.0",
"react-copy-to-clipboard": "5.0.1",
"react-country-flag": "^3.0.2",
"react-dom": "^16.13.0",
"react-flags-select": "^2.2.3",
"react-helmet": "5.2.1",
"react-loadable": "5.5.0",
"react-map-gl": "5.2.10",
"react-places-autocomplete": "7.2.1",
"react-redux": "7.1.0",
"react-router-dom": "5.1.2",
"react-scripts": "3.4.0",
"react-select-country-list": "^2.2.3",
"react-slick": "0.25.2",
"react-text-mask": "5.4.3",
"react-virtualized": "9.21.1",
"react-window": "1.8.5",
"redux": "4.0.4",
"redux-thunk": "2.3.0",
"reselect": "4.0.0",
"slick-carousel": "1.8.1",
"styled-components": "^5.3.5",
"use-smooth-scroll": "1.1.1",
"uuid": "3.3.3",
"viewport-mercator-project": "7.0.1"
},
"devDependencies": {
"@babel/core": "7.5.5",
"cross-env": "5.2.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"testcafe": "1.4.1",
"webpack-bundle-analyzer": "3.6.1",
"webpack-cli": "3.3.7"
},
"scripts": {
"start": "cross-env BROWSER=none react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"coverage": "npm run test -- --coverage --watchAll=false",
"eject": "react-scripts eject",
"tc:run": "./node_modules/.bin/testcafe chrome:headless tests/",
"tc:run:chrome": "./node_modules/.bin/testcafe chrome tests/",
"server": "cross-env NODE_PATH=./src NODE_ENV=development node ./server/index.js",
"analyze": "npm run build -- --stats && webpack-bundle-analyzer build/bundle-stats.json",
"lint": "eslint --ext .js,.jsx src/"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie < 11",
"not op_mini all"
],
"development": [
">0.2%",
"not dead",
"not ie < 11",
"not op_mini all"
]
}
}