forked from kontent-ai/sample-app-react
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
{
"name": "dancing-goat",
"version": "1.0.0",
"private": true,
"devDependencies": {
"cpy-cli": "^2.0.0",
"cross-env": "^5.2.0",
"dateformat": "^3.0.3",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2",
"react-scripts": "^2.1.5"
},
"dependencies": {
"@chevtek/react-spinners": "^1.0.5",
"google-maps-react": "^2.0.2",
"immutable": "^3.8.2",
"kentico-cloud-delivery": "^5.7.2",
"lodash": "^4.17.11",
"qs": "^6.5.2",
"react": "^16.4.2",
"react-cookie": "^3.0.4",
"react-dom": "^16.4.2",
"react-helmet": "^5.2.0",
"react-router-dom": "^4.3.1",
"react-scroll": "^1.7.10",
"react-translate": "^6.0.0",
"rxjs": "^6.2.2",
"twitter-widgets": "^2.0.0",
"universal-cookie": "^3.0.4",
"validator": "^10.7.0"
},
"lint-staged": {
"{src,examples}/**/*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"start": "react-scripts start",
"build": "cross-env CI=true react-scripts build && cpy build/index.html build --rename=200.html",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">0.25%",
"not op_mini all",
"ie 11"
]
}
}