forked from react95-io/React95
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.87 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": "react95",
"version": "1.0.3",
"authors": [
"Artur Bień"
],
"description": "Refreshed Windows95 UI components for modern web apps - React95",
"keywords": [
"react",
"styled-components",
"windows95",
"component",
"vaporwave"
],
"license": "MIT",
"repository": "[email protected]:arturbien/React95.git",
"homepage": "https://react95.io",
"main": "./dist/index.js",
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"storybook": "start-storybook -p 9009 -s public",
"build:storybook": "build-storybook -s public -o ./docs",
"prepublishOnly": "npm run release",
"release": "npm run build:dev && npm run build:prod",
"build:dev": "cross-env NODE_ENV=development rollup -c",
"build:prod": "cross-env NODE_ENV=production rollup -c"
},
"peerDependencies": {
"react": "^16.8.2",
"react-dom": "^16.8.2",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.0.10",
"@storybook/addon-info": "^5.0.10",
"@storybook/addon-links": "^5.0.10",
"@storybook/addon-options": "^5.0.10",
"@storybook/addon-storysource": "^5.0.10",
"@storybook/react": "^5.0.10",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"cross-env": "^5.2.0",
"prop-types": "^15.7.2",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"rimraf": "^2.6.3",
"rollup": "^1.9.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-replace": "^2.1.1",
"storybook-addon-styled-component-theme": "^1.2.0",
"styled-components": "^4.1.3"
}
}