-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
64 lines (64 loc) · 1.89 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
{
"name": "launchdarkly-react-client-sdk-example",
"version": "1.1.0",
"description": "Example usage of launchdarkly-react-client-sdk",
"main": "src/server/index.js",
"scripts": {
"start": "node src/server/index.js",
"lint": "eslint ./src",
"serve": "webpack-serve webpack.config.server",
"postinstall": "cd ../../ && yarn link-dev"
},
"repository": {
"type": "git",
"url": "git://github.com/launchdarkly/js-client-sdk.git"
},
"keywords": [
"launchdarkly",
"launch",
"darkly",
"react",
"sdk",
"bindings"
],
"author": "LaunchDarkly <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/launchdarkly/js-client-sdk/tree/main/packages/launchdarkly-react-client-sdk",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"express": "^4.16.4",
"launchdarkly-react-client-sdk": "^3.0.0-alpha.1",
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-router-dom": "^5.1.2",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-styled-components": "^1.10.0",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"universal-hot-reload": "^3.3.4",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2",
"webpack-serve": "^2.0.3"
},
"resolutions": {
"acorn": "npm:acorn-with-stage3"
}
}