This repository has been archived by the owner on Sep 9, 2020. It is now read-only.
forked from mehrdad-shokri/react-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.13 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
{
"name": "react-interface",
"version": "0.9.8",
"description": "react-interface React component",
"main": "lib/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"watch": "rm -rf lib && babel src_new -d lib -w",
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"start": "nwb serve-react-demo --port=4000",
"test": "nwb test-react",
"test:lint": "eslint src tests",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build"
},
"dependencies": {
"chroma-js": "^1.3.4",
"classnames": "^2.2.5",
"color": "^2.0.0",
"deepmerge": "^2.0.0",
"dom-helpers": "^3.3.1",
"element-resize-detector": "^1.1.13",
"glamor": "^2.20.40",
"grid-styled": "^3.2.1",
"polished": "^1.9.2",
"prop-types": "^15.6.0",
"react-feather": "^1.0.8",
"react-popper": "^0.8.2",
"react-show": "^2.0.4",
"styled-components": "^3.2.3",
"styled-system": "^2.2.1"
},
"peerDependencies": {
"react": ">=15"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.46",
"@babel/plugin-proposal-export-default-from": "^7.0.0-beta.46",
"@babel/plugin-transform-react-jsx": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"create-nwb-webpack-config": "^1.0.0",
"eslint-config-timber": "^1.0.12",
"markdown-loader": "^2.0.1",
"nwb": "^0.21.5",
"prettier": "^1.10.2",
"raw-loader": "^0.5.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-styleguidist": "^6.2.5"
},
"author": "",
"homepage": "",
"license": "MIT",
"repository": "",
"keywords": [
"react-component"
],
"eslintConfig": {
"extends": "timber"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-react-jsx",
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-proposal-class-properties"
]
}
}