-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
{
"name": "react-basket",
"version": "0.2.1",
"description": "A shopping basket components library for React based on material-ui components.",
"main": "./dist/index.js",
"homepage": "https://github.com/mbrn/react-basket#readme",
"author": "Mehmet Baran",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"start": "webpack-dev-server --config=docs/demo-app/webpack.config.js",
"build": "tsc",
"build:docs": "webpack --config=docs/demo-app/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbrn/react-basket.git"
},
"keywords": [
"javascript",
"shopping",
"cart",
"basket",
"react",
"typescript"
],
"bugs": {
"url": "https://github.com/mbrn/react-basket/issues"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.11.3",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.2",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.2",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"react-dom": "16.5.2",
"react-hot-loader": "^4.3.11",
"stylelint": "^9.5.0",
"stylelint-webpack-plugin": "^0.10.5",
"style-loader": "^0.23.0",
"typescript": "^3.1.3",
"webpack": "4.19.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"dependencies": {
"material-table": "^1.23.6"
},
"peerDependencies": {
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"react": "16.5.2"
}
}