-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.98 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.98 KB
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
{
"name": "ownkeeper-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@craco/craco": "^6.4.3",
"@reduxjs/toolkit": "^1.8.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.20.46",
"@types/react": "^17.0.39",
"@types/react-dom": "^18.0.0",
"@types/react-redux": "^7.1.23",
"antd": "^4.19.5",
"axios": "^0.26.1",
"craco-less": "^2.0.0",
"env-cmd": "^10.1.0",
"i": "^0.3.7",
"moment": "^2.29.2",
"npm": "^8.6.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-otp-input": "^2.4.0",
"react-redux": "^7.2.6",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.0",
"typescript": "^4.1.6"
},
"scripts": {
"start": "env-cmd -f .env.dev craco start",
"start:stage": "env-cmd -f .env.stage craco start",
"start:dev": "env-cmd -f .env.dev craco start",
"start:prod": "env-cmd -f .env.prod craco start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"build": "craco build",
"test": "craco test",
"eject": "craco eject",
"prepare": "husky install"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1"
},
"lint-staged": {
"*.ts?(x)": "eslint . --ext .js,.jsx,.ts,.tsx",
"*.{ts,tsx,css}": "prettier --config prettier.config.js --write",
"*.{ts,tsx}": "prettier --write"
}
}