-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
75 lines (75 loc) · 1.98 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
{
"name": "launchdarkly-remix-sdk",
"version": "1.0.0-alpha.3",
"description": "LaunchDarkly SDK for Remix",
"keywords": [
"launchdarkly",
"launch",
"darkly",
"react",
"sdk",
"remix"
],
"exports": {
"./client": "./lib/client/index.js",
"./server": "./lib/server/index.js",
"./shared": "./lib/shared/index.js"
},
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"lint": "eslint --cache --quiet src/**/*.ts*",
"prettier": "prettier --write '**/*.@(js|ts|tsx|json|css)'",
"link-dev": "./link-dev.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/launchdarkly-labs/remix-sdk.git"
},
"author": "LaunchDarkly",
"license": "Apache-2.0",
"engines": {
"node": ">= 10.17.0 <17",
"yarn": ">=3"
},
"packageManager": "yarn@3.2.1",
"dependencies": {
"launchdarkly-js-client-sdk": "^2.22.1",
"launchdarkly-node-server-sdk": "^6.4.2",
"lodash.camelcase": "^4.3.0"
},
"peerDependencies": {
"@remix-run/node": "^1.5.1",
"@remix-run/react": "^1.5.1",
"@remix-run/serve": "^1.5.1",
"@remix-run/server-runtime": "^1.5.1",
"react": "^16.6.3 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@remix-run/node": "^1.5.1",
"@remix-run/react": "^1.5.1",
"@remix-run/serve": "^1.5.1",
"@remix-run/server-runtime": "^1.5.1",
"@types/lodash.camelcase": "^4",
"@types/node": "17.0.41",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5",
"@types/rimraf": "^3",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"prettier": "^2.6.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rimraf": "^3.0.2",
"typescript": "4.7.3"
}
}