-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 3.18 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
{
"name": "magent",
"version": "0.0.1",
"private": true,
"license": "MIT",
"description": "JavaScript + Python hybrid monorepo",
"scripts": {
"bootstrap": "./scripts/bootstrap.sh",
"dev": "nx run @difizen/magent-platform:start",
"dev:ui": "nx run @difizen/magent-ui:start",
"test:jest": "jest",
"test:jest-config": "jest --show-config",
"coverage": "nx run-many --target=coverage",
"coverage:jest": "jest --coverage",
"postinstall": "is-ci || husky install",
"setup": "nx run-many --target=setup",
"build": "nx run-many --target=build",
"lint": "nx run-many --target=lint:prettier,lint",
"lint:prettier": "prettier --check --ignore-unknown .",
"prettier": "prettier --ignore-unknown . --write",
"lint-staged": "lint-staged",
"test": "nx run-many --target=test",
"ci:setup": "nx run-many --target=setup",
"ci:build": "nx run-many --target=build",
"ci:check": "nx run-many -t lint:prettier -t lint:eslint -t lint:stylelint -t typecheck:tsc -t coverage:jest",
"ci:publish": "changeset publish && nx run-many --nx-bail -t publish",
"docs": "nx run @difizen/magent-docs:start",
"docs:build": "nx run @difizen/magent-docs:build",
"changeset": "changeset",
"clean": "git clean -fX .",
"clean:web": "rm -rf node_modules",
"tsc": "nx run-many -t typecheck:tsc"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.23.9",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/plugin-transform-flow-strip-types": "^7.23.3",
"@babel/plugin-transform-private-methods": "^7.23.3",
"@babel/plugin-transform-private-property-in-object": "^7.23.4",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@swc/core": "^1.4.1",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@umijs/lint": "^4.1.1",
"babel-jest": "^29.7.0",
"babel-plugin-parameter-decorator": "^1.0.16",
"dotenv-cli": "^7.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mdx": "^2.3.4",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"father": "4.3.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-less-loader": "^0.2.0",
"lint-staged": "^13.3.0",
"nx": "^16.10.0",
"postcss-less": "^6.0.0",
"prettier": "^3.2.5",
"react-test-renderer": "^18.2.0",
"stylelint": "^14.16.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16.20.0"
},
"packageManager": "pnpm@9.7.1",
"nx": {
"includedScripts": [
"lint:prettier",
"coverage:jest"
]
},
"repository": "git@github.com:difizen/magent.git"
}