forked from mohitk05/react-insta-stories
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.9 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
{
"name": "react-insta-stories",
"version": "2.6.2",
"description": "A React component for Instagram like stories",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"prepare": "npm run build",
"prestart": "webpack --mode development",
"start": "webpack --watch --mode development",
"example": "cd example && npm start",
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/dist",
"buildall": "npm install && webpack --mode production && cd example && npm install && npm run build",
"postversion": "git push && git push --tags",
"analyze-bundle": "webpack --profile --json > stats.json && webpack-bundle-analyzer stats.json --mode=static"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mohitk05/react-insta-stories.git"
},
"keywords": [
"stories",
"react",
"instagram"
],
"author": "mohitk05",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohitk05/react-insta-stories/issues"
},
"homepage": "https://github.com/mohitk05/react-insta-stories#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@teamsupercell/typings-for-css-modules-loader": "^2.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"gh-pages": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-svg-loader": "^3.0.3",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.76.2",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.12.0"
},
"peerDependencies": {
"react": ">=16.8.2"
}
}