forked from dlehmhus/next-with-linaria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.76 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
{
"name": "next-with-linaria",
"version": "0.3.0",
"description": "Linaria support for Next.js 13 app directory feature",
"main": "lib/webpackConfig.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"clean": "rm -rf lib",
"lint": "eslint --fix src/**",
"test": "pnpm test --filter ./tests/example",
"prepublish": "pnpm run clean && pnpm run build"
},
"packageManager": "[email protected]",
"devDependencies": {
"@linaria/babel-preset": "4.3.0",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"eslint-plugin-unused-imports": "2.0.0",
"is-ci": "3.0.1",
"lint-staged": "13.0.3",
"next": "13.0.4",
"prettier": "2.7.1",
"simple-git-hooks": "2.8.1",
"typescript": "4.9.3",
"webpack": "5.75.0"
},
"peerDependencies": {
"@linaria/babel-preset": "4.x",
"webpack": "5.x"
},
"dependencies": {
"file-system-cache": "2.0.1"
},
"files": [
"lib"
],
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"**/*.(js|jsx|ts|tsx)": [
"eslint --fix"
],
"**/*.(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
},
"author": "Dario Lehmhus",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dlehmhus/next-with-linaria.git"
},
"bugs": {
"url": "https://github.com/dlehmhus/next-with-linaria/issues"
},
"homepage": "https://github.com/dlehmhus/next-with-linaria#readme",
"keywords": [
"linaria",
"next",
"next.js",
"css"
]
}