forked from bruegmann/blue-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.18 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": "blue-react",
"version": "6.12.3",
"description": "Blue React Components",
"license": "GNU",
"main": "index.js",
"types": "index.d.ts",
"files": [
"dist",
"index.js",
"index.d.ts"
],
"homepage": "https://bruegmann.github.io/blue-react",
"repository": {
"type": "git",
"url": "https://github.com/bruegmann/blue-react.git"
},
"bugs": {
"url": "https://github.com/bruegmann/blue-react/issues"
},
"scripts": {
"start": "react-scripts start",
"build-docs": "react-scripts build && npm run docgen",
"build": "babel ./src/components --out-dir ./dist/components & node-sass ./dist/style.scss ./dist/style.css",
"build-release": "npm run build && npm run docgen",
"docgen": "react-docgen ./src/components/ -o ./src/docs/data/docs.json && node followUpDocs",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build-docs",
"deploy": "gh-pages -d build",
"prepublishOnly": "npm run build-release",
"postpublish": "node postpublish",
"release": "npm publish && npm run deploy"
},
"dependencies": {
"bootstrap": "^4.5.0",
"react": "^16.13.1",
"reactstrap": "^8.5.1"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.47",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/react-highlight": "^0.12.2",
"@types/react-router-dom": "^5.1.5",
"gh-pages": "^3.1.0",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-docgen": "^5.3.0",
"react-dom": "^16.13.1",
"react-highlight": "^0.12.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"typescript": "^3.7.5"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}