-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "@kontent-ai/sample-app-react",
"version": "2.1.1",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.26",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/react-helmet": "^6.1.5",
"@types/validator": "^13.7.2",
"@types/webpack-env": "^1.16.3",
"cpy-cli": "^4.0.0",
"cross-env": "^7.0.2",
"lint-staged": "^10.2.7",
"prettier": "^2.0.5",
"react-scripts": "^5.0.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@kontent-ai/delivery-sdk": "^14.0.1",
"@kontent-ai/react-components": "0.3.0",
"@simply007org/react-spinners": "0.0.3",
"qs": "^6.9.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.0.0",
"react-intl": "^6.4.0",
"react-router-dom": "6.10.0",
"universal-cookie": "^4.0.4",
"validator": "^13.7.0"
},
"scripts": {
"lint": "eslint & prettier . --check",
"start": "react-scripts start",
"build": "cross-env CI=true react-scripts build && cpy build/index.html build --rename=200.html",
"test-watch": "react-scripts test --env=jsdom",
"test": "cross-env CI=true react-scripts test --env=jsdom --passWithNoTests"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"engines": {
"npm": "8 || 9",
"node": "18"
}
}