forked from react95-io/React95
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.17 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
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "react95",
"version": "0.0.0-development",
"description": "Refreshed Windows95 UI components for modern web apps - React95",
"keywords": [
"react",
"styled-components",
"windows95",
"components",
"vaporwave"
],
"license": "MIT",
"repository": "[email protected]:arturbien/React95.git",
"homepage": "https://react95.io",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "start-storybook -p 9009 -s public",
"build:storybook": "build-storybook -s public -o ./storybook",
"build": "rm -rf dist && npm run build:prod",
"build:dev": "cross-env NODE_ENV=development rollup -c",
"build:prod": "cross-env NODE_ENV=production rollup -c",
"test": "jest ./src",
"test:ci": "jest ./src --maxWorkers=2",
"test:watch": "jest ./src --watch",
"test:coverage": "jest ./src --coverage",
"lint": "eslint src --ext .js",
"lint:fix": "npm run lint -- --fix",
"semantic-release": "semantic-release",
"cz": "git-cz",
"docs:dev": "docz dev",
"docs:build": "docz build"
},
"peerDependencies": {
"react": "^16.8.2",
"react-dom": "^16.8.2",
"styled-components": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.8.3",
"@storybook/addon-docs": "^5.3.18",
"@storybook/addon-storysource": "^5.3.18",
"@storybook/react": "^5.3.18",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@types/jest": "^24.9.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.7",
"commitizen": "^4.0.4",
"cross-env": "^6.0.3",
"cz-conventional-changelog": "^3.1.0",
"docz": "latest",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"firebase-tools": "^7.15.0",
"gatsby-theme-docz": "^2.2.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-styled-components": "^7.0.3",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-replace": "^2.2.0",
"semantic-release": "^17.0.4",
"storybook-addon-styled-component-theme": "^1.3.0",
"styled-components": "^5.1.1"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}