forked from fabremx/crafting-frontend-exercices
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.68 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
{
"name": "web-components-materials",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite --config vite.config.ts",
"start": "vite --config vite.config.ts",
"test": "jest --detectOpenHandles",
"e2e": "jest --config=playwright.config.cjs",
"lint": "eslint --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/preset-env": "7.16.8",
"@babel/preset-typescript": "7.16.7",
"@storybook/addon-actions": "8.0.5",
"@storybook/addon-controls": "8.0.5",
"@storybook/addon-essentials": "8.0.5",
"@storybook/addon-links": "8.0.5",
"@storybook/builder-vite": "8.0.5",
"@storybook/web-components-vite": "8.0.5",
"@types/jest": "27.4.0",
"@types/node": "20.11.30",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.6",
"babel-loader": "9.1.3",
"core-js": "3.37.1",
"eslint": "8.20.0",
"eslint-plugin-storybook": "0.8.0",
"jest": "27.4.7",
"jest-playwright-jsdom": "0.0.4",
"jest-playwright-preset": "1.7.2",
"lit": "3.1.2",
"lit-html": "3.1.2",
"playwright": "1.23.4",
"prettier": "3.3.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "1.49.0",
"storybook": "8.0.5",
"ts-jest": "27.1.3",
"typescript": "4.9.5",
"vite": "4.5.3"
},
"engines": {
"node": "22.3.0",
"npm": "10.8.1"
},
"volta": {
"node": "22.3.0",
"npm": "10.8.1"
}
}