-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.29 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.29 KB
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
{
"name": "flower-monorepo",
"description": "Official monorepo for Flower packages.",
"version": "0.0.0",
"license": "ISC",
"workspaces": [
"packages/*"
],
"scripts": {
"test:core": "nx test flower-core",
"test:react": "nx test flower-react",
"core:showcoverage": "open ./coverage/packages/flower-core/index.html",
"react:showcoverage": "open ./coverage/packages/flower-react/index.html",
"coverage:core": "nx test flower-core --collectCoverage && npm run core:showcoverage",
"coverage:react": "nx test flower-react --collectCoverage && npm run react:showcoverage",
"tsc:noemit": "nx run-many -t tsc:noemit",
"build:devtool": "nx build flower-devtool",
"build:core": "nx build flower-core",
"build:react": "nx build flower-react",
"start:demo": "nx serve flower-demo",
"build:demo": "nx build flower-demo",
"lint": "nx run-many -t lint",
"lint:fix": "nx run-many -t lint --fix",
"test": "nx run-many -t test --passWithNoTests",
"graph": "nx graph",
"reset": "nx reset",
"lint:check": "nx run-many -t lint --fix --quiet --exclude=flower-demo",
"build:packages": "nx run-many -t build --exclude=flower-demo",
"prepare:prerelease": "npm run build:packages && ts-node scripts/prerelease",
"publish:prerelease": "nx release publish --tag prerelease",
"prepare:release": "npm run build:packages && nx release --skip-publish",
"publish:release": "nx release publish",
"generate": "nx build-sourcemap flower-demo",
"mdlint": "npx markdownlint-cli2",
"mdlint:fix": "npm run mdlint -- --fix"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/flowerforce/flower.git"
},
"homepage": "https://www.flowerjs.it",
"dependencies": {
"tslib": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@nx/eslint": "19.4.1",
"@nx/eslint-plugin": "19.4.1",
"@nx/jest": "19.4.1",
"@nx/js": "19.4.1",
"@nx/react": "19.4.1",
"@nx/rollup": "19.4.1",
"@nx/webpack": "19.4.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@svgr/webpack": "^8.0.1",
"@swc-node/register": "~1.9.1",
"@swc/cli": "~0.3.12",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@swc/jest": "0.2.36",
"@types/jest": "^29.4.0",
"@types/node": "18.16.9",
"@typescript-eslint/eslint-plugin": "^7.3.0",
"@typescript-eslint/parser": "^7.3.0",
"eslint": "~8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-environment-node": "^29.4.1",
"markdownlint-cli2": "^0.15.0",
"nx": "19.4.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "~5.4.2",
"webpack-cli": "^5.1.4"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "19.4.1",
"@nx/nx-darwin-x64": "19.4.1",
"@nx/nx-linux-x64-gnu": "19.4.1",
"@nx/nx-win32-x64-msvc": "19.4.1",
"@rollup/rollup-linux-x64-gnu": "4.18.0"
}
}