-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
65 lines (65 loc) · 1.99 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
{
"name": "vibrant",
"version": "0.0.0",
"author": {
"name": "David Sima",
"email": "hello@david-sima.dev",
"url": "https://github.com/The24thDS"
},
"private": true,
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "eslint src --ext .tsx --ext .ts",
"lint:fix": "yarn lint --fix",
"format": "prettier --config ./.prettierrc -w 'src/**/*.{tsx,ts}' && git update-index --again",
"pretest": "yarn lint:fix",
"test": "jest --colors --passWithNoTests",
"posttest": "npx http-server coverage/lcov-report",
"test:watch": "yarn test --collectCoverage=false --watch",
"prepare": "husky install",
"cz": "cz"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.17",
"@chakra-ui/react": "^2.4.9",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"framer-motion": "^8.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.6",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vitejs/plugin-react": "^3.0.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^9.0.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.0",
"prettier": "^2.5.1",
"rollup": "^3.10.1",
"ts-jest": "^29.0.5",
"typescript": "^4.5.5",
"vite": "^4.0.4"
}
}