-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 3.31 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
{
"name": "@fdg/cube-react",
"version": "0.0.1",
"description": "",
"main": "lib/index.js",
"scripts": {
"dev": "webpack --config scripts/webpack.config.js",
"doc": "webpack-dev-server --config scripts/webpack.doc.js",
"doc:dev": "webpack-dev-server --config scripts/webpack.doc.js",
"example": "webpack-dev-server --config scripts/webpack.example.js",
"lint": "tslint -c tslint.json -t codeFrame 'src/**/*.tsx' 'src/**/*.ts' 'site/**/*.ts' 'site/**/*.tsx' 'example/**/*.tsx', 'example/**/*.ts'",
"type-check": "tsc --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fdgio/cube-react.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fdgio/cube-react/issues"
},
"homepage": "https://github.com/fdgio/cube-react#readme",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/standalone": "^7.1.0",
"@babel/traverse": "^7.3.4",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@types/classnames": "^2.2.6",
"@types/enzyme": "^3.9.0",
"@types/jest": "^24.0.11",
"@types/react": "^16.7.7",
"@types/react-dom": "^16.0.10",
"@types/react-router-dom": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.4",
"commitlint": "^7.2.1",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.15.1",
"eslint-config-airbnb-typescript": "^1.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^2.0.0",
"highlight.js": "^9.15.6",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.2.0",
"jest": "^24.5.0",
"json-loader": "^0.5.7",
"lint-staged": "^8.1.5",
"loader-utils": "^1.1.0",
"markdown-it": "^8.4.2",
"markdown-it-container": "^2.0.0",
"markdown-loader": "^4.0.0",
"mini-css-extract-plugin": "^0.4.5",
"prettier": "^1.15.2",
"raw-loader": "^0.5.1",
"react-markdown": "^4.0.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"typescript": "^3.3.3333",
"url-loader": "^1.1.2",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.2.1",
"yaml-loader": "^0.5.0"
},
"peerDependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3"
},
"dependencies": {
"@babel/generator": "^7.3.4",
"@babel/runtime": "^7.3.4",
"@babel/types": "^7.3.4",
"classnames": "^2.2.6",
"github-markdown-css": "^2.10.0",
"highlight.js": "^9.13.1",
"normalize.css": "^8.0.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-router-dom": "^4.3.1"
}
}