-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.52 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
76
{
"name": "@wso2is/identity-authentication-flow-composer",
"version": "0.1.0",
"private": true,
"description": "A UI based tool to design and configure the authentication flows",
"repository": "https://github.com/wso2-incubator/identity-authentication-flow-composer",
"license": "Apache-2.0",
"dependencies": {
"@monaco-editor/react": "^4.0.11",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.7.1",
"@types/jest": "^26.0.20",
"@types/node": "^12.20.1",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"axios": "^0.21.1",
"babel-plugin-import": "^1.13.3",
"lodash": "^4.17.21",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-flow-renderer": "8.0.0",
"react-icons": "^4.2.0",
"react-redux": "^7.2.2",
"react-scripts": "4.0.2",
"redux-thunk": "^2.3.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-less": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"typescript": "^4.1.5",
"web-vitals": "^1.1.0"
},
"scripts": {
"bootstrap": "npm install",
"build": "react-app-rewired build",
"eject": "react-scripts eject",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:ci": "eslint -c .eslintrc.js $(git diff --diff-filter=d --name-only | grep -E \"(.js$|.ts$|.jsx$|.tsx$)\")",
"start": "react-app-rewired start",
"test": "react-app-rewired test"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/lodash": "^4.14.168",
"@types/react-redux": "^7.1.16",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"customize-cra": "^1.0.0",
"eslint": "^7.20.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"less": "^4.1.1",
"less-loader": "^7.3.0",
"react-app-rewired": "^2.1.8",
"redux-devtools-extension": "^2.13.8"
}
}