This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
123 lines (123 loc) · 3.53 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "total-perspective-vortex",
"version": "1.2.0",
"description": "A tool for value stream mapping a process flow",
"keywords": [
"lean",
"devops",
"vsm"
],
"repository": {
"type": "git",
"url": "https://github.com/bdfinst/total-perspective-vortex"
},
"license": "MIT",
"scripts": {
"start": "REACT_APP_CLEAR_LOCAL_STORAGE='true' react-scripts start",
"build": "CI=false react-scripts build",
"coverage": "CI=true react-scripts test --ci --coverage ",
"test:watch": "REACT_APP_CLEAR_LOCAL_STORAGE='true' react-scripts test ",
"test": "REACT_APP_CLEAR_LOCAL_STORAGE='true' npm run coverage ",
"test:ui": "REACT_APP_CLEAR_LOCAL_STORAGE='true' cypress open",
"cy:run": "cypress run --headless",
"test:cy": "start-server-and-test start http://localhost:3000 cy:run",
"eject": "react-scripts eject",
"format:check": "prettier --list-different './src/**/*.js*' './src/**/*.css'",
"format:fix": "prettier --write './src/**/*.js*' './src/**/*.css'",
"lint": "npm run format:fix && npm run lint:fix",
"lint:check": "eslint ./ ",
"lint:fix": "eslint ./ --fix",
"depcheck": "depcheck --ignores='import-sort-style-absolute'",
"pre-commit": "npm run depcheck && npm run lint && git add . && npm run lint:check && npm run format:check && npm test"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/__tests__/**/*.{js,jsx}"
],
"coverageReporters": [
"text",
"lcov",
"json",
"html"
],
"coverageThreshold": {
"global": {
"branches": 35,
"functions": 35,
"lines": 35,
"statements": 35
}
}
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"clsx": "^1.1.1",
"export-from-json": "^1.3.9",
"flat": "^5.0.2",
"html2canvas": "^1.1.4",
"local-storage": "^2.0.0",
"lodash": "^4.17.21",
"material-ui-dropzone": "^3.5.0",
"react": "^17.0.2",
"react-contexify": "^5.0.0",
"react-dom": "^17.0.2",
"react-flow-renderer": "^9.6.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"typescript": "^4.3.2",
"uuid": "^8.3.2",
"web-vitals": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.0.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"cypress": "^6.6.0",
"depcheck": "^1.4.0",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.8.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.1.1",
"import-sort-style-absolute": "^1.0.1",
"object-key-validator": "^1.1.2",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react-test-renderer": "^17.0.1",
"start-server-and-test": "^1.14.0"
},
"importSort": {
".js, .jsx, .es6, .es": {
"parser": "babylon",
"style": "absolute"
}
}
}