-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.12 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
{
"name": "craco-vitest",
"version": "0.1.0",
"description": "A project which use craco and vitest",
"main": "index.js",
"scripts": {
"test": "vitest",
"start": "craco start",
"build": "craco build",
"format": "prettier -uw --ignore-path .prettierignore .",
"lint": "eslint src --max-warnings=0 --ignore-path .eslintignore",
"lint:style": "stylelint src --max-warnings=0 --ignore-path .stylelintignore",
"prebuild": "babel src src --out-dir dist",
"eject": "react-scripts eject"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Exodiel/craco-vitest.git"
},
"keywords": [
"craco",
"vitest"
],
"author": "Jipson Saad",
"license": "MIT",
"bugs": {
"url": "https://github.com/Exodiel/craco-vitest/issues"
},
"devDependencies": {
"@babel/cli": "7.17.10",
"@babel/eslint-parser": "7.17.0",
"@babel/preset-env": "7.17.10",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@craco/craco": "7.0.0-alpha.3",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@testing-library/react-hooks": "8.0.0",
"@testing-library/user-event": "14.1.1",
"@types/jest": "27.5.0",
"@types/node": "17.0.32",
"@typescript-eslint/eslint-plugin": "5.23.0",
"@typescript-eslint/parser": "5.23.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.5.0",
"prettier": "2.6.2",
"react-scripts": "5.0.1",
"stylelint": "14.8.2",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard": "25.0.0",
"typescript": "4.6.4",
"vitest": "0.12.4"
},
"dependencies": {
"primeflex": "^3.1.3",
"primeicons": "^5.0.0",
"primereact": "^8.0.1",
"react": "18.1.0",
"react-dom": "18.1.0"
},
"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"
]
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx}"
]
}
}