-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.61 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
{
"name": "@intive-org/react-stories",
"version": "1.0.0",
"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",
"prestart": "webpack --mode development",
"start": "webpack --watch --mode development",
"example": "cd example && npm start",
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "npm run buildall",
"deploy": "gh-pages -d example/dist -u 'github-actions-bot <[email protected]>'",
"buildall": "npm install && npm run build && cd example && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/intive/react-stories.git"
},
"keywords": [
"stories",
"react",
"instagram"
],
"author": "intive",
"license": "MIT",
"bugs": {
"url": "https://github.com/intive/react-stories/issues"
},
"homepage": "https://intive.github.io/react-stories",
"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": "^16.9.2",
"@types/react-dom": "^16.8.5",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"gh-pages": "^3.1.0",
"react": "^16.10.2",
"react-svg-loader": "^3.0.3",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
},
"peerDependencies": {
"react": "^16.8.2"
},
"dependencies": {}
}