-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
92 lines (92 loc) · 2.66 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
{
"name": "eos-issue-request",
"version": "0.1.0",
"private": false,
"homepage": "https://userstory.site/",
"dependencies": {
"@okta/okta-auth-js": "^6.0.0",
"@okta/okta-react": "^6.4.3",
"@reach/router": "^1.3.4",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.25.0",
"better-docs": "^2.7.1",
"eos-icons-react": "^2.2.0",
"i18next": "^21.6.7",
"lodash": "^4.17.21",
"markdown-it": "^12.3.2",
"moment": "^2.29.1",
"node-sass": "^7.0.1",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.1",
"react-custom-stepper": "^0.2.7",
"react-dom": "^17.0.2",
"react-dropzone": "^11.5.1",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.25.0",
"react-hot-toast": "^2.2.0",
"react-html-parser": "^2.0.2",
"react-i18next": "^11.15.3",
"react-image-gallery": "^1.2.7",
"react-loading-skeleton": "^3.0.2",
"react-markdown": "^8.0.0",
"react-markdown-editor-lite": "^1.3.2",
"react-mentions": "^4.3.1",
"react-notification-badge": "^1.5.1",
"react-promise-tracker": "^2.1.0",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"react-share": "^4.4.0",
"react-switch": "^7.0.0"
},
"devDependencies": {
"cypress": "^9.3.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-standard": "^4.1.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"sass-lint": "^1.13.1",
"sass-lint-auto-fix": "^0.21.2"
},
"scripts": {
"start": "react-scripts start",
"with-docker": "docker-compose stop && docker-compose up -d && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"test:scss": "sass-lint -v -q",
"format": "prettier --write .",
"js:fix": "eslint src/ --fix",
"test:js": "eslint src/",
"docs": "jsdoc -c jsdoc.conf.json",
"lint:fix": "sass-lint-auto-fix",
"cypress:open": "cypress open",
"cypress:run": "cypress run --headless"
},
"husky": {
"hooks": {
"pre-commit": "npm run test:scss && npm run test:js"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}