This repository has been archived by the owner on Nov 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.95 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
{
"name": "@appfolio-im/react-gears-cypress",
"version": "0.0.0",
"packageManager": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AppFolio-IM/react-gears-cypress"
},
"directories": {
"lib": "./lib"
},
"files": [
"lib"
],
"module": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run clean && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".js,.jsx,.ts,.tsx\" --config-file ./.prod.babelrc",
"build:bundle": "webpack --mode production",
"clean": "rm -Rf dist lib",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix cypress/**/*.ts cypress/**/*.tsx src/**/*.ts",
"start": "cypress open --component",
"test": "cypress run --component",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@appfolio/react-gears": "^5.19.2",
"@babel/cli": "^7.22.15",
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.10.1",
"@cypress/react": "^7",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.48.2",
"babel-loader": "^9.1.0",
"cypress": ">= 12.6.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.14.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.33.2",
"prettier": "^2.8.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typescript": "< 4.9.0",
"webpack": "^5.88.2"
},
"dependencies": {
"core-js": "^3.27"
},
"overrides": {
"loader-utils": "2.0.4"
},
"peerDependencies": {
"cypress": "*"
}
}