-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.89 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
{
"name": "reactware",
"version": "0.5.2",
"description": "Reactware is an open source toolkit for developing desktop PWA with HTML, CSS, and JS",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist",
"README.md"
],
"dependencies": {
"styled-components": "^4.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "rm -rf dist && npm run babel && docz build",
"babel": "npx babel src/components --out-dir dist --ignore *.mdx",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src -c .eslintrc --ext js",
"docz": "docz dev"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "git+https://github.com/warejs/reactware.git"
},
"keywords": [
"ware",
"warejs",
"react-ware",
"react",
"pwa",
"pwas",
"html",
"css",
"js"
],
"author": "WareJS.org",
"license": "ISC",
"bugs": {
"url": "https://github.com/warejs/reactware/issues"
},
"homepage": "https://warejs.org",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"babel-preset-react-app": "^6.1.0",
"buble": "^0.19.4",
"docz": "^0.12.17",
"docz-theme-default": "^0.12.17",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-scripts": "^2.1.1"
},
"peerDependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3",
"prop-types": "^15.6.2"
}
}