-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.54 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
{
"name": "react-example",
"version": "1.0.0",
"description": "Simple React example of how to use Poool SDK",
"main": "index.js",
"repository": "https://github.com/p3ol/react-example.git",
"author": "Ugo Stephant <[email protected]>",
"license": "MIT",
"private": true,
"devDependencies": {
"@babel/core": "7.18.10",
"@babel/plugin-transform-runtime": "7.18.10",
"@babel/preset-env": "7.18.10",
"@babel/preset-react": "7.18.6",
"@poool/eslint-config": "2.0.2",
"@poool/eslint-config-react": "2.0.2",
"@poool/eslint-plugin": "2.0.2",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.5",
"eslint": "8.21.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-standard": "5.0.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.0",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.9.3"
},
"dependencies": {
"@babel/eslint-parser": "7.18.9",
"@babel/eslint-plugin": "7.18.10",
"@babel/runtime-corejs3": "7.18.9",
"@poool/react-access": "2.0.2",
"core-js": "3.24.1",
"history": "5.3.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "6.3.0"
},
"scripts": {
"start": "node_modules/.bin/webpack serve --config ./webpack.config.js",
"lint": "./node_modules/.bin/eslint --max-warnings=0 ."
}
}