-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.36 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
{
"name": "redell-ui",
"version": "0.3.13",
"description": "a react ui framework",
"types": "dist/lib/index",
"files": [
"lib/**/*",
"/@types/lib/**/*"
],
"scripts": {
"start": "npm run style && cross-env NODE_ENV=development webpack-dev-server --config webpack.config.dev.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"pub": "yarn build && bash scripts/publish.sh",
"doc": "cross-env NODE_ENV=production webpack --config webpack.config.doc.js && bash scripts/doc.sh",
"style": "npx stylelint **/*.scss --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gongjs/r-ui.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gongjs/r-ui/issues"
},
"homepage": "https://github.com/gongjs/r-ui#readme",
"devDependencies": {
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@types/codemirror": "^0.0.74",
"@types/enzyme": "^3.9.3",
"@types/highlight.js": "^9.12.3",
"@types/jest": "^24.0.11",
"@types/marked": "^0.6.5",
"@types/node": "^12.0.4",
"@types/react": "^16.8.12",
"@types/react-dom": "^16.8.3",
"@types/react-router-dom": "^4.3.1",
"@types/react-test-renderer": "^16.8.1",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.7.1",
"babel-preset-react-app": "^7.0.2",
"clean-webpack-plugin": "^3.0.0",
"codemirror": "^5.47.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-loader": "^4.0.0",
"eslint-plugin-jsx-control-statements": "^2.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.7.1",
"jest-junit": "^6.3.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"prettier": "^2.0.3",
"prism-react-renderer": "^0.1.6",
"prop-types": "^15.7.2",
"raw-loader": "^2.0.0",
"react-codemirror2": "^6.0.0",
"react-test-renderer": "^16.8.6",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^13.3.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-order": "^4.0.0",
"stylelint-webpack-plugin": "^1.2.3",
"svg-sprite-loader": "^4.1.3",
"ts-jest": "^24.0.2",
"typescript": "^3.8.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@types/react-transition-group": "^4.2.2",
"@types/vfile-message": "^2.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"punycode": "^2.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-markdown": "^4.1.0",
"react-router-dom": "^5.0.0",
"react-transition-group": "^4.2.2",
"terser-webpack-plugin": "^2.3.5",
"tslib": "^1.11.1",
"vfile-message": "^2.0.4"
},
"peerDependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}