-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.24 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.24 KB
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
{
"name": "react-hextech",
"version": "1.2.5",
"description": "League of Legends Hextect design components",
"main": "lib/index.js",
"scripts": {
"prepare": "npm run build",
"build": "webpack -p",
"test": "jest --config jest.json",
"test:coverage": "jest --config jest.json --coverage",
"lint": "eslint --ignore-path .gitignore --format=node_modules/eslint-formatter-pretty src/**/*.js src/**/*.jsx",
"dev": "start-storybook -p 9001 -c .storybook -s .storybook/public",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check",
"export": "build-storybook -c .storybook -o docs"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/leaguedevelopers/react-hextech.git"
},
"keywords": [
"league",
"of",
"legends",
"lol",
"react",
"hextech",
"webpack",
"javascript"
],
"author": "S. Coimbra (me@jinx.pro)",
"license": "MIT",
"bugs": {
"url": "https://github.com/leaguedevelopers/react-hextech/issues"
},
"homepage": "https://github.com/leaguedevelopers/react-hextech#readme",
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/register": "^7.0.0",
"@storybook/addon-a11y": "^4.1.4",
"@storybook/addon-actions": "^4.1.2",
"@storybook/addon-backgrounds": "^4.1.4",
"@storybook/addon-options": "^4.1.2",
"@storybook/react": "^4.1.2",
"@types/classnames": "^2.2.6",
"@types/jest": "^23.3.10",
"@types/react": "^16.7.18",
"@types/styled-components": "^4.1.4",
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-polished": "^1.1.0",
"babel-plugin-styled-components": "^1.10.0",
"babel-plugin-typescript-to-proptypes": "^0.15.0",
"classnames-loader": "^2.0.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"file-loader": "^3.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jest-enzyme": "^7.0.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.5.0",
"postcss-input-style": "^0.3.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.15.3",
"prop-types": "^15.6.1",
"raw-loader": "^0.5.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"sass-loader": "^6.0.3",
"string-replace-loader": "^2.1.1",
"style-loader": "^0.14.1",
"styled-components": "^4.1.3",
"stylint": "^1.5.9",
"svg-url-loader": "^2.0.2",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2",
"typescript-plugin-css-modules": "^1.0.4",
"url-loader": "^0.5.8",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"classnames": "^2.2.5",
"element-resize-detector": "^1.1.11",
"lodash.debounce": "^4.0.8",
"lodash.deburr": "^4.1.0",
"polished": "^2.3.1",
"ramda": "^0.26.1",
"recompose": "^0.30.0"
}
}