-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.63 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
{
"name": "react-stories-components",
"version": "1.0.3",
"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",
"start": "webpack --watch --mode development",
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "cd example && npm install && npm run build",
"buildall": "npm install && webpack --mode production && cd example && npm install && npm run build",
"deploy git page": "gh-pages -d example/dist",
"deploy to npm": "npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidramos-om/react-stories-components.git"
},
"keywords": [
"stories",
"react",
"instagram",
"components"
],
"author": "davidramos-om",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidramos-om/react-stories-components/issues"
},
"homepage": "https://github.com/davidramos-om/react-stories-components/blob/main/README.md",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@teamsupercell/typings-for-css-modules-loader": "^2.0.0",
"@types/react": "^18.0.30",
"@types/react-dom": "^18.0.11",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"gh-pages": "^5.0.0",
"react": "^18.2.0",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.2",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"peerDependencies": {
"react": "^16.8.2"
}
}