This repository was archived by the owner on Feb 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.59 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.59 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
{
"name": "@clutch-sh/tools",
"version": "4.0.0-beta",
"description": "Tools for testing and building clutch components",
"homepage": "https://clutch.sh/docs/development/frontend/overview#clutch-shtools",
"license": "Apache-2.0",
"author": "clutch@lyft.com",
"scripts": {
"buildDev": "echo \"This command is deprecated, please use 'yarn run package:compile:dev' instead.\" && exit 1",
"constraints:check": "cd $INIT_CWD && yarn constraints",
"constraints:fix": "yarn run constraints:check --fix",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn run lint --fix",
"node_modules:find": "find $PROJECT_CWD -name 'node_modules' -type d -prune -print",
"node_modules:nuke": "echo \"Deleting below 'node_modules' folders...\" && npm run --silent node_modules:find | xargs du -chs && echo '' && npm run --silent node_modules:find -- -exec rm -rf '{}' \\;",
"package:clean": "cd $INIT_CWD && rm -rf dist tsconfig.tsbuildinfo",
"package:compile": "cd $INIT_CWD && run -T tsc -b && find $INIT_CWD -name \"tsconfig.paths.json\" -exec yarn run -T tsc-alias -p \"tsconfig.paths.json\" \\;",
"package:compile:dev": "yarn node devBuild.js $INIT_CWD",
"package:compile:watch": "yarn node devBuild.js $INIT_CWD -w",
"package:lint": "eslint --ext .js,.jsx,.ts,.tsx $INIT_CWD",
"package:test": "cd $INIT_CWD && run -T jest --passWithNoTests",
"publishBeta": "../../../tools/publish-frontend.sh tools",
"registerWorkflows": "yarn node workflow-registrar.js",
"uploadSourcemaps": "yarn node upload-sourcemaps.js",
"workspace:compile:watch": "yarn node buildWatch.js",
"workspace:registerWorkflows": "yarn run registerWorkflows"
},
"dependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0",
"@babel/plugin-proposal-optional-chaining": "^7.16.0",
"@babel/plugin-proposal-private-property-in-object": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@bugsnag/source-maps": "^2.3.1",
"@types/enzyme": "^3.10.8",
"@types/jest": "^29.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.0.0",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"@yarnpkg/types": "^4.0.0",
"babel-jest": "^27.4.2",
"babel-plugin-module-resolver": "^4.0.0",
"byte-size": "^8.1.1",
"chalk": "^4",
"dotenv": "^16.3.1",
"enzyme": "^3.11.0",
"esbuild": "^0.25.0",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^8.2.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.25.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jsx-a11y": "^6.5.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.0.0",
"prettier": "~2.2.1",
"react-scripts": "^5.0.1",
"tsc-alias": "^1.8.8"
},
"devDependencies": {
"@types/byte-size": "^8",
"@types/eslint": "^8"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"engines": {
"node": ">=18 <19",
"yarn": "^4.5.0"
},
"packageManager": "yarn@4.5.0",
"stableVersion": "3.0.0-beta"
}