-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
99 lines (99 loc) · 3.13 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
{
"name": "react-instagram-embed",
"version": "3.0.0",
"description": "React embedding Instagram posts component",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"lib",
"es"
],
"keywords": [
"react",
"component",
"instagram"
],
"scripts": {
"prepare": "npx is-ci || husky install",
"lint-staged": "lint-staged",
"lint:eslint": "eslint '**/*.{ts,tsx,js}'",
"fix:eslint": "npm run lint:eslint -- --fix",
"_prettier": "prettier '**/*.{ts,tsx,js}'",
"lint:prettier": "npm run _prettier -- --check",
"fix:prettier": "npm run _prettier -- --write",
"typecheck": "tsc --noEmit",
"dev": "webpack serve --config webpack.config.dev.ts",
"clean:lib": "if [ -d lib ]; then rm -rf lib; fi",
"clean:es": "if [ -d es ]; then rm -rf es; fi",
"precompile:commonjs": "npm run clean:lib",
"compile:commonjs": "tsc --outDir lib --module commonjs",
"precompile:es": "npm run clean:es",
"compile:es": "tsc --build tsconfig.es.json",
"compile": "npm run compile:commonjs && npm run compile:es",
"test": "jest --config jest.config.json",
"test:coverage": "npm test -- --coverage",
"clean:build": "if [ -d build ]; then rm -rf build; fi",
"build:demo": "./scripts/build_demo.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sugarshin/react-instagram-embed.git"
},
"author": "sugarshin",
"license": "MIT",
"bugs": {
"url": "https://github.com/sugarshin/react-instagram-embed/issues"
},
"homepage": "https://github.com/sugarshin/react-instagram-embed#readme",
"peerDependencies": {
"react": "^17.0.0 || ^16.0.0 || ^15.0.0 || ~0.14.0",
"react-dom": "^17.0.0 || ^16.0.0 || ^15.0.0 || ~0.14.0"
},
"devDependencies": {
"@babel/core": "7.24.9",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.24.8",
"@babel/preset-react": "7.24.7",
"@babel/preset-typescript": "7.24.7",
"@hot-loader/react-dom": "17.0.2",
"@types/dotenv-webpack": "7.0.8",
"@types/jest": "26.0.24",
"@types/node": "14.18.63",
"@types/react": "17.0.83",
"@types/react-dom": "17.0.25",
"@types/react-test-renderer": "17.0.9",
"@types/webpack": "5.28.5",
"@types/webpack-dev-server": "3.11.6",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-loader": "8.3.0",
"css-loader": "5.2.7",
"dotenv-webpack": "7.1.1",
"eslint": "7.32.0",
"eslint-plugin-react": "7.34.4",
"highlight.js": "11.10.0",
"html-webpack-plugin": "5.6.3",
"husky": "7.0.4",
"is-ci": "3.0.1",
"jest": "27.5.1",
"lint-staged": "11.2.6",
"normalize.css": "8.0.1",
"prettier": "2.8.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-github-ribbons": "0.2.2",
"react-hot-loader": "4.13.1",
"react-test-renderer": "17.0.2",
"style-loader": "3.3.4",
"ts-jest": "27.1.5",
"ts-node": "10.9.2",
"typescript": "4.9.5",
"webpack": "5.94.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "3.11.3"
},
"dependencies": {
"type-fest": "^1.2.2"
}
}