-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.36 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@contentful/field-editor-reference": "^1.11.0",
"@contentful/forma-36-fcss": "0.0.34",
"@contentful/forma-36-react-components": "^3.42.2",
"@contentful/rich-text-html-renderer": "^14.1.1",
"@contentful/rich-text-types": "^14.1.1",
"@material-ui/core": "^4.11.0",
"@sentry/react": "^5.20.0",
"@testing-library/dom": "^7.20.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^25.2.3",
"array-move": "^3.0.1",
"axios": "^0.19.2",
"contentful": "^7.14.5",
"contentful-ui-extensions-sdk": "^3.16.1",
"copy-to-clipboard": "^3.3.1",
"date-fns": "^2.16.1",
"faker": "^5.3.1",
"history": "^4.10.1",
"json-logic-js": "^2.0.0",
"lodash": "^4.17.19",
"node-htmldiff": "^0.9.3",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-datepicker": "^3.2.2",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.3.0",
"react-select": "^4.0.2",
"react-sortable-hoc": "^1.11.0",
"styled-components": "^5.2.1",
"uuid": "^8.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"testfull": "react-scripts test --verbose",
"eject": "react-scripts eject",
"lint": "eslint . --fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/react-hooks": "^4.0.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest-environment-jsdom-sixteen": "^1.0.3",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"react-test-renderer": "^16.13.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"volta": {
"node": "10.16.3"
}
}