-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.72 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
{
"version": "0.3.0",
"author": {
"email": "ricokahler@me.com",
"name": "Rico Kahler",
"url": "https://github.com/ricokahler"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ricokahler/flair.git"
},
"description": "a lean, component-centric style system for React components",
"keywords": [
"css",
"css-in-js",
"jss",
"linaria"
],
"license": "MIT",
"private": true,
"scripts": {
"test": "jest",
"lint": "eslint packages --ext .ts,.tsx,.js,.jsx",
"check-dependencies": "node ./scripts/check-dependencies.js",
"resolve-dependencies": "node ./scripts/resolve-dependencies.js",
"publish": "node ./scripts/publish.js",
"build": "node ./scripts/build.js"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/generator": "7.9.6",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-transform-runtime": "7.9.6",
"@babel/polyfill": "7.8.7",
"@babel/preset-env": "7.9.6",
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "7.9.0",
"@babel/runtime": "7.9.6",
"@babel/template": "7.8.6",
"@babel/traverse": "7.9.6",
"@babel/types": "7.9.6",
"@color2k/compat": "1.0.0-rc.5",
"@rollup/plugin-babel": "5.0.4",
"@rollup/plugin-node-resolve": "8.1.0",
"@types/babel__core": "7.1.9",
"@types/babel__traverse": "7.0.12",
"@types/classnames": "2.2.10",
"@types/common-tags": "1.8.0",
"@types/node": "13.13.12",
"@types/react": "16.9.41",
"@types/require-from-string": "1.2.0",
"@types/webpack": "4.41.18",
"@typescript-eslint/eslint-plugin": "3.4.0",
"@typescript-eslint/parser": "3.4.0",
"babel-eslint": "10.1.0",
"babel-plugin-module-resolver": "4.0.0",
"canvas": "2.6.1",
"classnames": "2.2.6",
"color2k": "1.0.0-rc.5",
"common-tags": "1.8.0",
"eslint": "7.3.1",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "5.1.3",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.0.4",
"folder-hash": "3.3.2",
"jest": "26.1.0",
"jsdom": "16.2.2",
"pirates": "4.0.1",
"prettier": "2.0.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-test-renderer": "16.13.1",
"require-from-string": "2.0.2",
"rollup": "2.18.0",
"semver": "7.3.2",
"stylis": "3.5.4",
"typescript": "3.9.5",
"uid": "1.0.0",
"webpack": "4.43.0"
},
"peerDependencies": {
"@babel/preset-typescript": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@types/react": "^16.8.0",
"react": "^16.8.0"
}
}