-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.99 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.99 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
92
93
{
"name": "manh-react-survey",
"version": "0.7.0",
"private": true,
"dependencies": {
"@lottiefiles/react-lottie-player": "3.5.3",
"@reduxjs/toolkit": "1.9.5",
"@travelperksl/fabricator": "7.0.1",
"@types/lodash": "4.14.195",
"axios": "1.4.0",
"classnames": "2.3.2",
"date-fns": "2.30.0",
"lodash": "4.17.21",
"rc-slider": "10.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.1.0",
"react-router-dom": "6.3.0",
"react-scripts": "5.0.1",
"react-toastify": "9.1.3",
"sass": "1.49.11"
},
"scripts": {
"start": "react-scripts -r @cypress/instrument-cra start",
"build": "react-scripts build",
"test": "react-scripts test --transformIgnorePatterns",
"eject": "react-scripts eject",
"test:coverage": "concurrently --kill-others-on-fail \"npm test -- --coverage --watchAll=false\" \"npm run cypress\" && npm run test:merge-coverage && nyc report",
"test:merge-coverage": "node ./scripts/coverage-merge.js",
"lint": "eslint ./ --ext .js,.ts,.tsx",
"lint:fix": "eslint ./ --ext .js,.ts,.tsx --fix",
"stylelint": "stylelint '**/*.scss'",
"stylelint:fix": "stylelint '**/*.scss' --fix",
"codebase:lint": "npm run lint && npm run stylelint",
"codebase:fix": "npm run lint:fix && npm run stylelint:fix",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"cypress": "start-server-and-test start 3000 cypress:run"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "7.22.5",
"@babel/eslint-parser": "7.22.5",
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@babel/preset-env": "7.22.5",
"@cypress/browserify-preprocessor": "3.0.2",
"@cypress/code-coverage": "3.10.7",
"@cypress/instrument-cra": "1.4.0",
"@faker-js/faker": "8.0.2",
"@nimblehq/eslint-config-nimble-react": "1.2.0",
"@nimblehq/eslint-config-nimble-testing": "1.1.0",
"@nimblehq/stylelint-config-nimble": "1.0.3",
"@testing-library/cypress": "9.0.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.1.1",
"@types/jest": "29.5.2",
"@types/node": "20.2.5",
"@types/react": "18.2.9",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"concurrently": "8.2.0",
"cypress": "12.14.0",
"cypress-react-selector": "3.0.0",
"danger": "11.2.6",
"danger-plugin-istanbul-coverage": "1.6.2",
"eslint": "8.12.0",
"jest-canvas-mock": "2.5.2",
"postcss": "8.4.24",
"postcss-import": "15.1.0",
"prettier": "2.6.0",
"start-server-and-test": "2.0.0",
"stylelint": "15.7.0",
"tailwindcss": "3.3.2",
"typescript": "4.6.2"
},
"nyc": {
"report-dir": "coverage/cypress",
"exclude": [],
"excludeAfterRemap": true
}
}