-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.97 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-transform-private-methods": "^7.22.5",
"@babel/plugin-transform-private-property-in-object": "^7.22.11",
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/config-lerna-scopes": "^17.8.1",
"@commitlint/cz-commitlint": "^17.8.1",
"@stryker-mutator/core": "^7.3.0",
"@stryker-mutator/jest-runner": "^7.3.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/experimental-utils": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"acorn": "^8.10.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-plugin-react-native-web": "^0.19.9",
"commitizen": "^4.3.0",
"core-js": "^3.33.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jest": "^27.4.3",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^4.0.1",
"inquirer": "^8.2.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-mock": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"lerna": "^7.4.1",
"metro-react-native-babel-preset": "^0.77.0",
"msw": "^1.3.2",
"prettier": "^2.8.8",
"regenerator-runtime": "^0.14.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-auto-inject-version-next": "^1.2.4",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"scripts": {
"test": "echo 'Workaround for npm rfc #575'; lerna exec --ignore @keneanung/iron-realms-nexus-typings --no-bail --no-progress --stream -- npx jest --testLocationInResults --collect-coverage --config jestconfig.js",
"lint": "lerna exec --no-bail --no-progress --stream -- eslint . --ext .ts,.tsx",
"webpack": "lerna exec --no-bail --no-progress --stream --ignore @keneanung/iron-realms-nexus-typings --ignore @keneanung/nexus-package-builder --ignore @keneanung/nexus-simplified-scripting-converter -- webpack build --mode development",
"webpackProd": "lerna exec --no-bail --no-progress --stream --ignore @keneanung/iron-realms-nexus-typings --ignore @keneanung/nexus-package-builder --ignore @keneanung/nexus-simplified-scripting-converter -- webpack build --mode production",
"build": "lerna run --no-bail --no-progress build",
"nxs": "lerna run --no-bail --no-progress nxs",
"nxsProd": "lerna run --no-bail --no-progress nxsProd",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"overrides": {
"lerna": "$lerna"
}
}