generated from CodelyTV/typescript-web-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 14
/
template.json
62 lines (62 loc) · 1.81 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
{
"package": {
"scripts": {
"cy:open": "cypress open",
"cy:run": "cypress run",
"test": "jest --watch --config=jest.config.js",
"lint": "eslint --ignore-path .gitignore . && stylelint **/*.scss",
"lint:fix": "eslint --fix --ignore-path .gitignore . && stylelint --fix **/*.scss"
},
"devDependencies": {
"@swc/core": "^1.3.6",
"@swc/jest": "^0.2.23",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"typescript": "^4.4.2",
"eslint-config-codely": "^2.1.1",
"identity-obj-proxy": "^3.0.0",
"jest-transform-stub": "^2.0.0",
"cypress": "10.3.0",
"@testing-library/cypress": "^8.0.2",
"stylelint": "^14.1.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"sass": "^1.55.0"
},
"dependencies": {},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"eslint-config-codely/typescript"
],
"parserOptions": {
"project": ["./tsconfig.json"]
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
"overrides": [
{
"files": ["**/tests/e2e/**/*.spec.ts"],
"rules": {
"testing-library/await-async-query": 0,
"@typescript-eslint/no-unsafe-member-access": 0,
"@typescript-eslint/no-unsafe-call": 0,
"testing-library/prefer-screen-queries": 0
}
}
]
}
}
}