-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.json
64 lines (64 loc) · 1.95 KB
/
template.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
{
"package": {
"dependencies": {
"@loadable/babel-plugin": "^5.15.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.33",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"dayjs": "^1.11.12",
"js-cookie": "^3.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.2",
"react-scripts": "5.0.1",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"build:test": "serve -s build",
"test": "craco test",
"eject": "craco eject",
"lint": "eslint --quiet ./",
"lint:fix": "eslint --fix . --ext .ts --ext .tsx",
"lint:ci": "eslint -f json -o eslint-report.json ./",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check .",
"test:watch": "jest --watch",
"test:ci": "jest --coverage --silent=true",
"ts:check": "tsc --noEmit"
},
"devDependencies": {
"@coax/eslint-config-fe-react": "^1.0.0",
"@craco/craco": "^7.1.0",
"@types/js-cookie": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"babel-jest": "^29.5.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.5.0",
"jest-canvas-mock": "^2.5.1",
"jest-environment-jsdom": "^29.5.0",
"jest-environment-jsdom-fourteen": "^1.0.1",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.62.1",
"sass-loader": "^13.3.0",
"serve": "^14.2.0",
"style-loader": "^3.3.3"
},
"pre-commit": [
"ts:check",
"prettier:format",
"lint"
]
}
}