forked from WPMedia/engine-theme-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.94 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
{
"name": "@wpmedia/engine-theme-sdk",
"version": "2.13.2-arc-themes-release-version-1-32.1",
"description": "SDK components for the Fusion News theme",
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"files": [
"dist",
"types",
"svg",
"scripts"
],
"scripts": {
"build": "rm -rf dist && npm run build:cjs && npm run build:es && npm run build:dts",
"build:cjs": "BABEL_ENV=commonjs babel src --extensions='.ts,.tsx' --out-dir dist/cjs --ignore 'src/components/**/*.test.tsx','src/components/**/*.test.ts' --no-copy-ignored",
"build:es": "BABEL_ENV=es babel src --extensions='.ts,.tsx' --out-dir dist/es --ignore 'src/components/**/*.test.tsx','src/components/**/*.test.ts' --no-copy-ignored",
"build:dts": "tsc",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint . --ext .ts,.js,.tsx,.jsx",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build",
"postpublish": "git push --tags",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"postinstall": "node scripts/postinstall.js",
"format": "prettier --write ."
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WPMedia/engine-theme-sdk.git"
},
"author": "",
"license": "CC-BY-NC-ND-4.0",
"bugs": {
"url": "https://github.com/WPMedia/engine-theme-sdk/issues"
},
"homepage": "https://github.com/WPMedia/engine-theme-sdk#readme",
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-decorators": "^7.23.2",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@cfaester/enzyme-adapter-react-18": "^0.7.1",
"@storybook/addon-a11y": "^7.5.0",
"@storybook/addon-console": "^2.0.0",
"@storybook/addon-essentials": "^7.6.10",
"@storybook/addon-knobs": "^7.0.2",
"@storybook/addons": "^7.5.0",
"@storybook/react": "^7.5.3",
"@testing-library/react": "^14.1.2",
"@types/babel__core": "^7.20.2",
"@types/enzyme": "^3.10.14",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@types/prop-types": "^15.7.8",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@types/styled-components": "^5.1.28",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.18.1",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-styled-components": "^2.1.4",
"chromatic": "^7.4.0",
"enzyme": "^3.11.0",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-enzyme": "^7.1.2",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@arc-fusion/prop-types": "^0.1.5",
"@wpmedia/timezone": "^1.1.2",
"dom-parser": "^0.1.6",
"is-react": "^1.5.4",
"lazy-child": "^0.3.1",
"polished": "^4.2.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-oembed-container": "^1.0.1",
"react-swipeable": "^7.0.1",
"rimraf": "^3.0.2",
"styled-components": "^6.1.8",
"thumbor-lite": "0.1.6"
},
"overrides": {
"react-oembed-container": {
"react": "$react",
"react-dom": "$react-dom"
}
}
}