-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.22 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
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "w2w-apps",
"version": "0.1.0",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.13.15",
"@babel/helper-builder-react-jsx": "^7.12.13",
"@babel/helper-builder-react-jsx-experimental": "^7.12.11",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.2",
"@types/crypto-js": "^4.0.1",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-router-bootstrap": "^0.24.5",
"@types/react-router-dom": "^5.1.7",
"@types/react-select": "^4.0.14",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"axios": "^0.21.1",
"bootstrap": "4.6.0",
"crypto-js": "^4.0.0",
"eslint": "^7.24.0",
"eslint-plugin-react": "^7.23.2",
"jsonwebtoken": "^8.5.1",
"node-sass": "5.0.0",
"react": "^17.0.2",
"react-bootstrap": "^1.6.1",
"react-datepicker": "^3.7.0",
"react-dom": "^17.0.2",
"react-google-places-autocomplete": "^3.3.0",
"react-google-recaptcha-v3": "^1.9.0",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-select": "^4.3.0",
"scroll-js": "^3.3.0",
"sweetalert2": "^10.16.2",
"typescript": "4.1.5",
"web-vitals": "^1.1.1"
},
"scripts": {
"eslint": "eslint",
"start": "react-scripts start",
"start:ssl": "HTTPS=true SSL_CRT_FILE=./.cert/cert.pem SSL_KEY_FILE=./.cert/key.pem react-scripts start",
"build": "react-scripts build",
"build:prod": "GENERATE_SOURCEMAP=false react-scripts build",
"test": "react-scripts test",
"test:ci": "cross-env CI=true react-scripts test",
"test:ci:alt": "react-scripts test --ci --watchAll=false",
"test:jsdom": "yarn test --env=jsdom",
"test:staged": "yarn test:ci --findRelatedTests",
"test:coverage": "yarn test:ci --coverage",
"isolated-test:unit": "jest __tests__",
"isolated-test:watch": "jest __tests__ --watch",
"eject": "react-scripts eject",
"lint:dry": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not IE 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.1",
"@types/react-datepicker": "^3.1.8",
"cross-env": "^7.0.3",
"jest-svg-transformer": "^1.0.0",
"jest-transform-stub": "^2.0.0",
"react-svg-loader": "^3.0.3",
"standard-version": "^9.2.0",
"ts-jest": "^26.5.4"
},
"moduleNameMapper": {
"\\.(svg)$": "<rootDir>/__mocks__/fileMock.js"
}
}