-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
90 lines (90 loc) · 2.48 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
{
"name": "krini",
"version": "1.0.0",
"private": true,
"dependencies": {
"@elixir-cloud/tes": "0.1.1",
"@szhsin/react-menu": "^3.0.1",
"@testing-library/cypress": "^8.0.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^13.5.0",
"@uiw/react-textarea-code-editor": "^2.0.2",
"axios": "^0.27.2",
"env-cmd": "^10.1.0",
"js-yaml": "^4.1.0",
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-avatar": "^4.1.0",
"react-confirm-alert": "^2.8.0",
"react-dom": "^18.1.0",
"react-fast-marquee": "^1.3.2",
"react-files": "^3.0.0-alpha.3",
"react-hot-toast": "^2.2.0",
"react-json-tree": "^0.18.0",
"react-pdf": "^7.3.3",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"validator": "^13.7.0",
"vanilla-cookieconsent": "^2.8.9",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "cypress run && react-scripts test --watchAll=false --passWithNoTests",
"test:dev": "react-scripts test --passWithNoTests",
"cypress:open": "cypress open",
"cypress:install": "cypress install && npx cypress verify",
"eject": "react-scripts eject",
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"prepare": "husky install",
"pre-commit": "lint-staged && npm run 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": {
"autoprefixer": "^10.4.7",
"cypress": "^10.1.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.1",
"postcss": "^8.4.13",
"pretty-quick": "^3.1.3",
"tailwindcss": "^3.0.24"
},
"lint-staged": {
"**/*.{js,jsx}": "npm run lint-fix",
"*.+(json|css|md)": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
}
}