-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.8 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.8 KB
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
{
"name": "componentize-1",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/plugin-syntax-jsx": "^7.16.7",
"@babel/runtime": "^7.20.1",
"@googlemaps/react-wrapper": "^1.1.35",
"@popperjs/core": "^2.11.0",
"@react-google-maps/api": "^2.17.0",
"@sweetalert/with-react": "^0.1.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"axios": "^0.24.0",
"bootstrap": "^5.2.3",
"cra-template": "1.1.2",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"formik": "^2.2.9",
"google-maps-react": "^2.0.6",
"prop-types": "^15.8.1",
"rc-pagination": "^3.1.14",
"react": "^17.0.2",
"react-bootstrap": "^2.6.0",
"react-dom": "^17.0.2",
"react-icons": "^4.7.1",
"react-loki": "^1.2.0",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.0.2",
"react-scripts": "^4.0.3",
"react-toastify": "^8.1.0",
"reactstrap": "^9.0.1",
"s.starterapptests": "^0.2.21",
"sabio-debug": "https://github.com/sabiocode/debug",
"sweetalert": "^2.1.2",
"toastr": "^2.1.4",
"web-vitals": "^2.1.2",
"yup": "^0.32.11"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"sabio": "npm install sabio -g",
"share": "sabio -sb",
"copy-test": "copy-test",
"test-intermediate": "copy-test && set CI=true &&react-scripts test -i /src/__tests__/_2_react_intermediate/ReactIntermediate1.test.js --env=jsdom --testResultsProcessor=./node_modules/jest-html-reporter",
"test-intermediate-two": "copy-test && set CI=true &&react-scripts test -i /src/__tests__/_2_react_intermediate/ReactIntermediate2.test.js --env=jsdom --testResultsProcessor=./node_modules/jest-html-reporter",
"test-new": "set CI=true && react-scripts test -i /src/__tests__/_assessments/React_Test-Blue-Penguin.test.js --env=jsdom --testResultsProcessor=./node_modules/jest-html-reporter && create-file react_test-blue-penguin || create-file react_test-blue-penguin",
"postinstall": "npm install sabio@latest -g",
"create-file": "create-file",
"compile-test": "compile-test",
"submit-test-2": "submit-test-2"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:react-hooks/recommended"
],
"rules": {
"react-hooks/exhaustive-deps": [
0
],
"no-alert": [
2
],
"eqeqeq": [
2,
"always"
],
"no-unused-vars": [
2,
{
"vars": "local",
"args": "after-used",
"ignoreRestSiblings": false
}
]
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"jest-html-reporter": "^3.4.2"
}
}