-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 2.96 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
88
89
90
{
"name": "kinetic",
"description": "A suite of opinionated admin tools that internal teams can use to manage and run their stores on Open Commerce",
"version": "0.0.0",
"homepage": "https://github.com/reactioncommerce/kinetic",
"url": "https://github.com/reactioncommerce/kinetic",
"email": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/reactioncommerce/kinetic.git"
},
"author": {
"name": "Mailchimp Open Commerce",
"email": "[email protected]",
"url": "https://mailchimp.com/developer/open-commerce/"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/reactioncommerce/kinetic/issues"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest run --passWithNoTests",
"coverage": "vitest run --coverage",
"preview": "vite preview",
"generate": "graphql-codegen --config codegen.yml",
"lint": "eslint --ext=ts,tsx src",
"lint:fix": "eslint --ext=ts,tsx src --fix"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fontsource/inter": "^4.5.11",
"@mui/icons-material": "^5.10.3",
"@mui/lab": "5.0.0-alpha.85",
"@mui/material": "^5.10.4",
"@mui/x-date-pickers": "^5.0.8",
"@tanstack/react-table": "^8.2.2",
"@types/react-dom": "^18.0.11",
"buffer": "^6.0.3",
"crypto-js": "^4.1.1",
"date-fns": "^2.29.3",
"formik": "^2.2.9",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"lodash-es": "^4.17.21",
"react": "^18.0.0",
"react-csv": "^2.2.2",
"react-dom": "^18.0.0",
"react-imask": "^6.4.2",
"react-query": "^3.39.1",
"react-router-dom": "^6.8.1",
"react-use": "^17.4.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@faker-js/faker": "^7.3.0",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/typescript": "2.4.11",
"@graphql-codegen/typescript-operations": "2.4.0",
"@graphql-codegen/typescript-react-query": "^3.5.12",
"@reactioncommerce/eslint-config": "^2.4.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/crypto-js": "^4.1.1",
"@types/lodash-es": "^4.17.6",
"@types/react": "^18.0.0",
"@types/react-csv": "^1.1.3",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@vitejs/plugin-react": "^1.3.0",
"@vitest/coverage-c8": "^0.23.1",
"c8": "^7.12.0",
"eslint": "^8.16.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"jsdom": "^20.0.0",
"msw": "^0.47.3",
"typescript": "^4.6.3",
"vite": "^2.9.9",
"vitest": "^0.28.5",
"vitest-fetch-mock": "^0.2.2"
}
}