forked from stevekinney/enterprise-ui-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.27 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
{
"name": "enterprise-ui",
"version": "1.0.0",
"description": "Example code and exercises for Steve's \"Enterprise UI Development\" course for Frontend Masters.",
"main": "./src/main.ts",
"type": "module",
"scripts": {
"start": "vite",
"test:svelte": "vitest --config=vitest.config.svelte.ts",
"test:all": "vitest",
"test:accessibility": "vitest accessibility --run",
"coverage": "vitest --coverage --run",
"test": "echo \"Navigate into an example and run the tests from there!\" && exit 1",
"build": "tsc && vite build",
"preview": "vite preview"
},
"keywords": [
"react",
"svelte",
"testing",
"vite",
"vitest"
],
"author": "Steve Kinney <[email protected]>",
"homepage": "https://frontendmasters.com/courses/enterprise-ui-dev/",
"repository": {
"type": "git",
"url": "https://github.com/stevekinney/enterprise-ui-dev"
},
"license": "MIT",
"dependencies": {
"@emotion/css": "^11.10.6",
"@reduxjs/toolkit": "^1.9.3",
"clsx": "^1.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@playwright/test": "^1.31.2",
"@sveltejs/vite-plugin-svelte": "^2.0.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/svelte": "^3.2.2",
"@testing-library/user-event": "^14.4.3",
"@tsconfig/svelte": "^3.0.0",
"@types/jest-axe": "^3.5.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/uuid": "^9.0.1",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.29.2",
"@vitest/ui": "^0.29.2",
"autoprefixer": "^10.4.14",
"commitlint": "^17.4.4",
"happy-dom": "^8.9.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-axe": "^7.0.0",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^21.1.1",
"lint-staged": "^13.2.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.4",
"svelte-preprocess": "^5.0.3",
"tailwindcss": "^3.2.7",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "0.29.2"
}
}