-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
119 lines (119 loc) · 3.62 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
111
112
113
114
115
116
117
118
119
{
"name": "react-creme",
"version": "1.0.0",
"description": "Mono repo for react-creme",
"directories": {
"lib": "lib",
"documentation": "documentation"
},
"dependencies": {
"@babel/core": "^7.22.11",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-classes": "^7.22.6",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.11",
"@relative-ci/agent": "^4.1.8",
"@sentry/react": "^7.65.0",
"@sentry/tracing": "^7.65.0",
"@types/bluebird": "^3.5.38",
"@types/node": "^20.5.7",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"autoprefixer": "^10.4.15",
"cssnano": "^6.0.1",
"esbuild": "^0.19.2",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "^8.4.28",
"postcss-bem-linter": "^4.0.1",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^9.1.2",
"postcss-reporter": "^7.0.5",
"prettier": "^3.0.2",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remove-files-webpack-plugin": "^1.5.0",
"sass": "^1.66.1",
"snyk": "^1.1207.0",
"stylelint": "15.10.3",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.1.0",
"thread-loader": "^4.0.2",
"ts-toolbelt": "^9.6.0",
"turbo": "^1.10.13",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-stats-plugin": "^1.1.3"
},
"scripts": {
"lint": "turbo run lint",
"format": "turbo run format",
"build": "turbo run build",
"prepare": "husky install",
"dev": "turbo run dev --scope=*docu*",
"story": "turbo run dev --scope=*story*",
"test": "turbo run test",
"test:ci": "turbo run test:ci",
"all": "turbo run format lint test build",
"build:lib": "turbo run build:lib",
"build:doc": "turbo run build:doc",
"ci": "turbo run ci",
"snyk": "turbo run snyk",
"fix-css": "turbo run fix-css --parallel",
"fix-js": "turbo run fix-js --parallel",
"fix-all": "npx concurrently \"pnpm fix-css\" \"pnpm fix-js\"",
"clean": "pnpm fix-all & pnpm format & pnpm lint",
"percy": "turbo run percy",
"build-story": "turbo run build-story"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prabhuignoto/react-creme.git"
},
"author": "Prabhu Murthy",
"license": "MIT",
"bugs": {
"url": "https://github.com/prabhuignoto/react-creme/issues"
},
"homepage": "https://github.com/prabhuignoto/react-creme#readme",
"workspaces": [
"packages/*"
],
"lint-staged": {
"**/*.tsx": [
"npx prettier --write",
"npx eslint --fix",
"git add"
],
"**/*.scss": [
"npx prettier --write",
"npx stylelint",
"git add"
]
},
"packageManager": "[email protected]",
"devDependencies": {
"@testing-library/react-hooks": "^8.0.1",
"@vitest/coverage-v8": "^0.34.3",
"postcss-scss": "^4.0.7"
}
}