This repository has been archived by the owner on Oct 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 3.84 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
102
103
104
105
106
107
108
109
110
{
"private": true,
"scripts": {
"nx": "nx",
"lint": "eslint examples mocks test packages scripts",
"lint-staged": "lint-staged",
"prepare": "is-ci || husky install",
"project:coverage:to-relative": "node ./scripts/commands/project-coverage-to-relative.js",
"project:coverage:to-workspace": "node ./scripts/commands/project-coverage-to-workspace.js",
"projects:target:print:array": "node ./scripts/commands/projects-target-print-array.js",
"affected:print:array": "node ./scripts/commands/affected-print-array.js",
"affected:target:print:array": "node ./scripts/commands/affected-target-print-array.js",
"affected:report": "node ./scripts/commands/affected-report.js",
"affected:check": "node ./scripts/commands/affected-check.js",
"affected:check:report": "node ./scripts/commands/affected-check-report.js",
"affected:build": "nx affected --target=build",
"affected:test:unit": "nx affected --target=test:unit --parallel=1",
"affected:test:e2e": "nx affected --target=test:e2e --parallel=1",
"affected:graph": "nx affected:graph",
"build:all": "nx run-many --target=build --all",
"test:unit:all": "nx run-many --target=test:unit --all --parallel=1",
"test:e2e:all": "nx run-many --target=test:e2e --all --parallel=1",
"test:all": "pnpm run test:unit:all && npm run test:e2e:all",
"graph": "nx graph"
},
"devDependencies": {
"@babel/core": "7.20.5",
"@babel/eslint-parser": "7.19.1",
"@babel/plugin-syntax-flow": "7.18.6",
"@babel/plugin-transform-react-jsx": "7.19.0",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@cypress/webpack-preprocessor": "5.15.6",
"@mocks-server/admin-api-paths": "3.0.1",
"@mocks-server/main": "3.11.0",
"@nrwl/cli": "13.8.3",
"@nrwl/eslint-plugin-nx": "13.8.3",
"@nrwl/tao": "13.8.3",
"@nrwl/workspace": "13.8.3",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@stryker-mutator/core": "6.3.0",
"@stryker-mutator/jest-runner": "6.3.0",
"@testing-library/cypress": "8.0.7",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.5",
"@typescript-eslint/parser": "5.36.0",
"babel-jest": "27.5.1",
"babel-loader": "8.2.5",
"babel-plugin-module-resolver": "4.1.0",
"babel-polyfill": "6.26.0",
"commander": "9.4.1",
"cross-env": "7.0.3",
"cross-fetch": "3.1.5",
"cross-spawn": "7.0.3",
"cypress": "9.7.0",
"cypress-fail-fast": "6.0.0",
"deepmerge": "4.2.2",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"fs-extra": "11.1.0",
"handlebars": "4.7.7",
"husky": "8.0.2",
"is-ci": "3.0.1",
"is-promise": "4.0.0",
"jest": "27.5.1",
"json-server": "0.17.0",
"lint-staged": "13.0.3",
"lodash": "4.17.21",
"prettier": "2.8.1",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-app-rewired": "2.2.1",
"react-dom": "18.2.0",
"react-redux": "8.0.5",
"react-scripts": "5.0.1",
"react-test-renderer": "18.2.0",
"redux": "4.2.0",
"regenerator-runtime": "0.13.11",
"request": "2.88.2",
"request-promise": "4.2.6",
"rollup": "2.78.1",
"rollup-plugin-terser": "7.0.2",
"serve": "14.1.2",
"sinon": "15.0.0",
"start-server-and-test": "1.15.1",
"strip-ansi": "6.0.0",
"tree-kill": "1.2.2",
"typescript": "4.9.4",
"wait-on": "6.0.1",
"webpack": "5.75.0"
},
"lint-staged": {
"packages/**/*.js": "eslint",
"test/**/*.js": "eslint",
"mocks/**/*.js": "eslint",
"examples/**/*.js": "eslint",
"scripts/**/*.js": "eslint",
"*.js": "eslint",
"*.cjs": "eslint"
},
"type": "module",
"engines": {
"node": ">=14.0.0"
}
}