-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
94 lines (94 loc) · 2.52 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
{
"name": "einstore-admin",
"version": "1.0.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^5.8.2",
"@reach/router": "^1.2.1",
"@sentry/browser": "^5.3.0",
"@types/classnames": "^2.2.7",
"@types/color": "^3.0.0",
"@types/crypto-js": "^3.1.43",
"@types/jest": "^24.0.13",
"@types/lodash-es": "^4.17.3",
"@types/memoize-one": "^4.1.1",
"@types/node": "^12.0.2",
"@types/pretty-bytes": "^5.1.0",
"@types/query-string": "^6.3.0",
"@types/reach__router": "^1.2.4",
"@types/react": "^16.8.18",
"@types/react-copy-to-clipboard": "^4.2.6",
"@types/react-dom": "^16.8.4",
"@types/react-dropzone": "^4.2.2",
"@types/react-select": "^2.0.19",
"babel-preset-react-app": "^9.0.0",
"classnames": "^2.2.6",
"color": "^3.1.1",
"cross-env": "^5.2.0",
"crypto-js": "^3.1.9-1",
"formik": "^1.5.7",
"fstream": ">=1.0.12",
"get-best-contrast-color": "^0.2.2",
"jwt-decode": "^2.2.0",
"lodash-es": "^4.17.11",
"md5": "^2.2.1",
"memoize-one": "^5.0.4",
"node-sass": "^4.12.0",
"pretty-bytes": "^5.2.0",
"prop-types": "^15.7.2",
"query-string": "^6.5.0",
"react": "^16.8.6",
"react-autosuggest": "^9.4.3",
"react-copy-to-clipboard": "^5.0.1",
"react-datalist": "^4.0.0",
"react-dom": "^16.8.6",
"react-dropzone": "^8.2.0",
"react-pose": "^4.0.8",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-scripts": "^3.0.1",
"react-select": "2",
"serve": "^11.0.0",
"slugify": "^1.3.4",
"ts-node": "^8.2.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"whatwg-fetch": "^3.0.0",
"yup": "^0.27.0"
},
"scripts": {
"prod": "npm run build && npm run serve",
"start": "cross-env BROWSER=none react-scripts start",
"start-demo": "cross-env REACT_APP_API_URL=https://demo.einstore.io/api npm run start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"test:ci": "npm run test -- --coverage",
"serve": "./node_modules/.bin/serve -l tcp://0.0.0.0:3000 -s build",
"ci": "cross-env CI=true npm run build && npm run test:ci",
"ci:run": "npm run ci && npm run serve",
"format": "prettier --write \"src/**/*.{j,t}s{,x}\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/yup": "^0.26.13",
"prettier": "^1.17.1"
},
"resolutions": {
"@types/react": "^16.8.18"
}
}