-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) Β· 2.59 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) Β· 2.59 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
73
74
75
76
77
78
{
"name": "invaiz-design-system",
"productName": "INVAIZ Design System",
"private": true,
"version": "1.0.0",
"description": "INVAIZ Design System development project",
"author": "INVAIZ Inc.",
"license": "MIT",
"homepage": "https://github.com/FUBAR-ORG/INVAIZ-Design-System#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/FUBAR-ORG/INVAIZ-Design-System.git"
},
"bugs": {
"url": "https://github.com/FUBAR-ORG/INVAIZ-Design-System/issues"
},
"main": "src/index.tsx",
"scripts": {
"start": "vite",
"build": "vite build",
"test": "jest",
"test:watch": "jest --watch",
"test:snapshot": "jest --updateSnapshot",
"test:clear": "jest --clearCache",
"test:local": "jest \"src/tests/storybook.test.ts\"",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{ts,tsx}\"",
"prettier": "prettier --check \"src/**/*.{ts,tsx}\"",
"prettier:fix": "prettier --write \"src/**/*.{ts,tsx}\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/addon-storyshots": "^6.5.12",
"@storybook/builder-vite": "^0.2.2",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"@vitejs/plugin-react": "^2.0.0",
"chromatic": "^6.7.3",
"eslint": "^8.21.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prettier": "^2.7.1",
"react-test-renderer": "^18.2.0",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"vite": "^3.0.5",
"vite-plugin-eslint": "^1.7.0",
"vite-plugin-svgr": "^2.2.1"
}
}