-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.6 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
{
"name": "@jotforminc/support-dashboard",
"version": "1.0.0",
"private": true,
"license": "UNLICENSED",
"browserslist": [
"extends @jotforminc/browserslist-config"
],
"dependencies": {
"@emotion/react": "11.5.0",
"@emotion/styled": "11.3.0",
"@jotforminc/jotform-common": "5.0.2",
"@jotforminc/jotform.css": "1.3.0",
"@jotforminc/router-bridge": "workspace:*",
"@jotforminc/uikit": "0.4.0",
"@mui/icons-material": "5.8.4",
"@mui/material": "5.9.3",
"@mui/x-data-grid": "5.15.0",
"@popperjs/core": "2.0.3",
"@reduxjs/toolkit": "1.8.0",
"@swc/helpers": "0.4.0",
"axios": "0.24.0",
"chart.js": "3.8.0",
"core-js": "3.22.2",
"formik": "2.2.9",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-chartjs-2": "4.3.1",
"react-dom": "17.0.2",
"react-redux": "7.2.6",
"react-router-dom": "6.1.0",
"redux": "4.1.2",
"regenerator-runtime": "0.13.9",
"yup": "0.32.11"
},
"devDependencies": {
"@faker-js/faker": "7.3.0",
"@jotforminc/babel-preset-react": "workspace:*",
"@jotforminc/browserslist-config": "workspace:*",
"@jotforminc/eslint-config-react": "workspace:*",
"@jotforminc/jest-preset-base": "workspace:*",
"@jotforminc/jest-preset-e2e": "workspace:*",
"@jotforminc/jest-preset-react": "workspace:*",
"@jotforminc/stylelint-config": "workspace:*",
"@jotforminc/webpack-config-app": "workspace:*",
"@testing-library/jest-dom": "5.12.0",
"@testing-library/react": "11.1.0",
"deepmerge": "4.2.2",
"eslint": "7.32.0",
"jest": "27.3.1",
"stylelint": "13.13.1",
"webpack": "5.73.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.9.2"
},
"scripts": {
"build": "pnpm build:app",
"start": "pnpm start:app",
"lint": "pnpm lint:js && pnpm lint:style",
"test": "pnpm test:unit && pnpm test:e2e",
"bootstrap": "[ -d build ] || pnpm build",
"clean": "rm -rf build",
"build:app": "webpack --config webpack.prod.config.js",
"start:app": "webpack serve --config webpack.dev.config.js",
"lint:js": "eslint src --cache --cache-location ../../../.cache/eslint/support-dashboard",
"lint:js:ci": "pnpm lint:js --quiet",
"lint:style": "stylelint src/**/*.css src/**/*.scss",
"test:unit": "jest --testRegex=\"^[^\\.]+\\.spec\\.js$\" --passWithNoTests",
"test:unit:ci": "env CI=true pnpm test:unit",
"test:e2e": "env JEST_E2E=true jest --testRegex=\"^[^\\.]+\\.e2e\\.js$\" --passWithNoTests",
"test:e2e:ci:periodic": "env CI=true pnpm test:e2e",
"test:e2e:debug": "env JEST_E2E_DEBUG=true pnpm test:e2e --runInBand"
}
}