-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.15 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
{
"name": "cra-netlify-cms",
"version": "0.1.0",
"private": true,
"dependencies": {
"@contentful/rich-text-types": "^14.1.1",
"@reduxjs/toolkit": "^1.2.5",
"@sentry/react": "^5.22.3",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^10.4.3",
"@testing-library/user-event": "^12.0.11",
"@types/classnames": "^2.2.10",
"@types/jest": "^26.0.3",
"@types/node": "^14.0.14",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.7",
"bootstrap": "^4.5.0",
"classnames": "^2.2.6",
"contentful": "^7.14.5",
"dotenv": "^8.2.0",
"firebase": "^7.15.0",
"react": "^16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-scripts": "3.4.1",
"shortid": "^2.2.15",
"typescript": "~3.9.5"
},
"scripts": {
"content:gen-types": "contentful-typescript-codegen --output src/types/generated/contentful.d.ts",
"content:export": "touch src/content.json && node ./scripts/contentful-export.js > src/lib/contentful/__mocks__/content.json",
"format:check": "prettier --check \"./src/**/*.{ts,tsx,js,jsx}\"",
"format": "prettier --write \"./src/**/*.{ts,tsx,js,jsx}\"",
"start": "BROWSER=none react-scripts start",
"build": "react-scripts build",
"lint": "eslint './src/**/*.{ts,tsx,js,jsx}'",
"test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"test:ci": "react-scripts test --env=jest-environment-jsdom-sixteen --watchAll=false"
},
"eslintConfig": {
"extends": "react-app",
"ignorePatterns": [
"src/types/generated/**/*.d.ts"
],
"rules": {
"@typescript-eslint/no-unused-vars": "error"
}
},
"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/shortid": "^0.0.29",
"contentful-management": "^5.26.2",
"contentful-typescript-codegen": "^3.2.1",
"jest-environment-jsdom-sixteen": "^1.0.3",
"prettier": "^2.0.5"
}
}