-
Notifications
You must be signed in to change notification settings - Fork 228
/
package.json
86 lines (86 loc) · 2.79 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
77
78
79
80
81
82
83
84
85
86
{
"name": "drone-ui-react",
"version": "2.12.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"postbuild": "rm -rf ./dist/files; mv ./build ./dist/files",
"serve": "npx http-server ./build -p 3001",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "npm run lint:js && npm run lint:styles",
"lint:fix": "npm run lint:js:fix && npm run lint:styles:fix",
"lint:js": "eslint --ext .js,.jsx --ignore-path .gitignore .",
"lint:js:fix": "eslint --fix --ext .js,.jsx --ignore-path .gitignore .",
"lint:styles": "stylelint --ignore-path .gitignore '{**/*,*}.{css,sass,scss,html}'",
"lint:styles:fix": "stylelint --fix --ignore-path .gitignore '{**/*,*}.{css,sass,scss,html}'"
},
"dependencies": {
"@emotion/core": "^10.1.1",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^10.0.27",
"@monaco-editor/react": "^4.2.2",
"@projectstorm/react-diagrams": "^6.0.1-beta.7",
"adaptive-expressions": "^4.14.1",
"adaptivecards": "^2.10.0",
"adaptivecards-react": "^1.0.0",
"adaptivecards-templating": "^2.1.0",
"ansi_up": "^4.0.4",
"axios": "^0.21.4",
"classnames": "^2.2.6",
"closest": "0.0.1",
"dagre": "^0.8.5",
"date-fns": "^2.16.1",
"immer": "^9.0.6",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"pathfinding": "^0.4.18",
"paths-js": "^0.4.11",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-split-pane": "^0.1.92",
"react-toastify": "^7.0.3",
"resize-observer-polyfill": "^1.5.1",
"swr": "^0.3.9",
"zustand": "^3.5.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.5.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.5",
"lint-staged": "^10.5.3",
"node-sass": "^4.14.1",
"react-scripts": "^4.0.3",
"stylelint": "^13.8.0",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-recess-order": "^2.3.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}