๐Ÿ“ฆ ionic-team / ionic-framework

๐Ÿ“„ package.json ยท 97 lines
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{
  "name": "@ionic/react",
  "version": "8.7.17",
  "description": "React specific wrapper for @ionic/core",
  "keywords": [
    "ionic",
    "framework",
    "react",
    "mobile",
    "app",
    "hybrid",
    "webapp",
    "cordova",
    "progressive web app",
    "pwa"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ionic-team/ionic-framework.git"
  },
  "scripts": {
    "build": "npm run clean && npm run copy && npm run compile",
    "build.watch": "npm run compile -- --watch",
    "clean": "rimraf dist && rimraf routing",
    "compile": "rollup -c",
    "eslint": "eslint src",
    "prettier": "prettier \"./src/**/*.{html,ts,tsx,js,jsx}\"",
    "lint": "npm run eslint && npm run prettier -- --write --cache",
    "lint.fix": "npm run eslint -- --fix && npm run prettier -- --write --cache",
    "copy": "node scripts/copy.js",
    "test.spec": "jest --ci",
    "sync": "sh ./scripts/sync.sh",
    "local.sync.and.pack": "./scripts/sync-and-pack.sh"
  },
  "main": "dist/index.js",
  "types": "dist/types/index.d.ts",
  "files": [
    "dist/",
    "css/"
  ],
  "dependencies": {
    "@ionic/core": "^8.7.17",
    "ionicons": "^8.0.13",
    "tslib": "*"
  },
  "peerDependencies": {
    "react": ">=16.8.6",
    "react-dom": ">=16.8.6"
  },
  "devDependencies": {
    "@ionic/eslint-config": "^0.3.0",
    "@ionic/prettier-config": "^2.0.0",
    "@rollup/plugin-typescript": "^11.1.5",
    "@testing-library/jest-dom": "^5.11.6",
    "@testing-library/react": "^12.1.5",
    "@testing-library/react-hooks": "^7.0.1",
    "@types/jest": "^26.0.15",
    "@types/node": "^14.0.14",
    "@types/react": "^17.0.79",
    "@types/react-dom": "^17.0.25",
    "@typescript-eslint/eslint-plugin": "^5.48.2",
    "@typescript-eslint/parser": "^5.48.2",
    "eslint": "^7.32.0",
    "fs-extra": "^9.0.1",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "np": "^6.4.0",
    "prettier": "^2.8.3",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "rimraf": "^3.0.2",
    "rollup": "^4.2.0",
    "ts-jest": "^29.1.3",
    "typescript": "^5.0.0"
  },
  "jest": {
    "testEnvironment": "jsdom",
    "preset": "ts-jest",
    "setupFilesAfterEnv": [
      "<rootDir>/jest.setup.js"
    ],
    "testPathIgnorePatterns": [
      "cypress",
      "node_modules",
      "dist",
      "test/base/*",
      "test/apps/*",
      "test/build/*"
    ],
    "modulePaths": [
      "<rootDir>"
    ]
  },
  "prettier": "@ionic/prettier-config"
}