-
-
Notifications
You must be signed in to change notification settings - Fork 399
/
Copy pathpackage.json
60 lines (60 loc) · 1.38 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
{
"name": "react-jss",
"description": "JSS integration with React",
"version": "10.10.0",
"license": "MIT",
"main": "dist/react-jss.cjs.js",
"module": "dist/react-jss.esm.js",
"unpkg": "dist/react-jss.bundle.js",
"homepage": "https://cssinjs.org/react-jss",
"sideEffects": false,
"typings": "./src/index.d.ts",
"author": "JSS Team",
"repository": {
"type": "git",
"url": "https://github.com/cssinjs/jss.git",
"directory": "packages/react-jss"
},
"bugs": {
"url": "https://github.com/cssinjs/jss/issues/new?title=[react-jss]"
},
"files": [
"dist",
"src",
"!*.test.*"
],
"keywords": [
"react",
"style",
"css",
"stylesheet",
"jss",
"hoc",
"decorator"
],
"scripts": {
"build": "node ../../scripts/build.js",
"check-snapshot": "node ../../scripts/match-snapshot.js"
},
"peerDependencies": {
"react": ">=16.8.6"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"@emotion/is-prop-valid": "^0.7.3",
"css-jss": "10.10.0",
"hoist-non-react-statics": "^3.2.0",
"is-in-browser": "^1.1.3",
"jss": "10.10.0",
"jss-preset-default": "10.10.0",
"prop-types": "^15.6.0",
"shallow-equal": "^1.2.0",
"theming": "^3.3.0",
"tiny-warning": "^1.0.2"
},
"devDependencies": {
"@types/react": "^16.8.16",
"react-dom": "^16.8.6",
"styled-system": "4.2.0-0"
}
}