-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
76 lines (76 loc) · 1.97 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
{
"name": "gatsby-plugin-linaria",
"version": "4.0.2",
"description": "Gatsby plugin for styling with Linaria",
"main": "index.js",
"homepage": "https://www.gatsbyjs.com/plugins/gatsby-plugin-linaria/",
"repository": {
"type": "git",
"url": "git+https://github.com/cometkim/gatsby-plugin-linaria.git"
},
"author": {
"name": "Matija Marohnić",
"email": "[email protected]",
"url": "https://silvenon.com"
},
"maintainers": [
{
"name": "Hyeseong Kim",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/cometkim/gatsby-plugin-linaria/issues",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"gatsby",
"gatsby-plugin",
"linaria",
"css",
"css-in-js"
],
"files": [
"index.js",
"gatsby-node.js",
"gatsby-ssr.js",
"utils.js"
],
"scripts": {
"build": "babel src --out-dir . --extensions .ts,.tsx --presets gatsby-package",
"lint": "eslint . --ignore-path .gitignore --ext .ts,.tsx",
"prepack": "yarn build"
},
"peerDependencies": {
"@linaria/core": "^4.0.0",
"@linaria/react": "^4.0.0",
"gatsby": "^3.0.0 || ^4.0.0 || ^5.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@linaria/server": "^4.0.0",
"@linaria/webpack-loader": "^4.1.2",
"babel-preset-gatsby": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/eslint-parser": "^7.11.0",
"@cometjs/eslint-plugin": "^2.0.0",
"@linaria/core": "^4.1.1",
"@linaria/react": "^4.1.2",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"babel-preset-gatsby-package": "^3.0.0",
"eslint": "^8.21.0",
"gatsby": "^5.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.0",
"webpack": "^5.74.0"
},
"packageManager": "[email protected]"
}