forked from abereghici/remix-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.69 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": "remix-themes",
"version": "0.0.0-semantically-released",
"description": "An abstraction for themes in your Remix_run app.",
"keywords": [
"remix",
"themes",
"dark mode",
"light mode"
],
"homepage": "https://github.com/abereghici/remix-themes#readme",
"bugs": {
"url": "https://github.com/abereghici/remix-themes/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abereghici/remix-themes.git"
},
"license": "MIT",
"author": "Alexandru Bereghici",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build",
"package.json",
"README.md"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "eslint --ext .ts,.tsx src/",
"validate": "npm-run-all --parallel typecheck lint"
},
"dependencies": {},
"devDependencies": {
"@remix-run/server-runtime": "^1.1.1",
"@remix-run/react": "^1.1.1",
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-testing-library": "^4.3.0",
"eslint-plugin-unicorn": "^32.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"react": "^17.0.2",
"typescript": "^4.5.4"
},
"peerDependencies": {
"@remix-run/server-runtime": "^1.1.1",
"@remix-run/react": "^1.1.1"
}
}