-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
97 lines (97 loc) · 3.39 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
{
"private": true,
"scripts": {
"nx": "nx",
"lint": "eslint mocks packages test 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: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.22.1",
"@babel/eslint-parser": "7.21.8",
"@babel/preset-env": "7.22.2",
"@babel/preset-react": "7.22.3",
"@babel/preset-typescript": "7.21.5",
"@cypress/webpack-preprocessor": "5.17.1",
"@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": "21.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-typescript": "8.5.0",
"@testing-library/cypress": "8.0.3",
"@typescript-eslint/eslint-plugin": "5.59.7",
"@typescript-eslint/parser": "5.59.7",
"babel-jest": "27.5.1",
"babel-loader": "8.2.5",
"babel-plugin-module-resolver": "4.1.0",
"babel-plugin-replace-ts-export-assignment": "0.0.2",
"babel-polyfill": "6.26.0",
"commander": "9.1.0",
"cross-env": "7.0.3",
"cross-fetch": "3.1.6",
"cross-spawn": "7.0.3",
"cypress": "9.7.0",
"cypress-fail-fast": "3.4.1",
"deepmerge": "4.3.1",
"eslint": "8.41.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jest": "26.7.0",
"eslint-plugin-no-only-tests": "2.6.0",
"eslint-plugin-prettier": "4.2.1",
"fs-extra": "10.1.0",
"handlebars": "4.7.7",
"husky": "7.0.4",
"is-ci": "3.0.1",
"is-promise": "4.0.0",
"jest": "27.5.1",
"lint-staged": "12.5.0",
"lodash": "4.17.21",
"prettier": "2.8.8",
"react": "17.0.2",
"react-app-rewired": "2.2.1",
"react-scripts": "4.0.3",
"request": "2.88.2",
"request-promise": "4.2.6",
"rollup": "2.79.0",
"rollup-plugin-terser": "7.0.2",
"serve": "13.0.4",
"sinon": "13.0.2",
"start-server-and-test": "1.14.0",
"strip-ansi": "6.0.0",
"tree-kill": "1.2.2",
"typescript": "4.7.4",
"wait-on": "6.0.1",
"webpack": "5.84.1"
},
"lint-staged": {
"packages/**/*.js": "eslint",
"packages/**/*.ts": "eslint",
"test/**/*.js": "eslint",
"mocks/**/*.js": "eslint",
"scripts/**/*.js": "eslint",
"*.js": "eslint"
},
"type": "module",
"engines": {
"node": ">=14.0.0"
}
}