-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"version": "0.0.0",
"name": "eon-builder",
"dependencies": {
"classnames": "^2.3.1",
"deep-object-diff": "1.1.7",
"downshift": "6.1.9",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-use": "17.4.0",
"solid-js": "^1.4.8"
},
"devDependencies": {
"@testing-library/react": "13.3.0",
"@trivago/prettier-plugin-sort-imports": "3.3.0",
"@types/jest": "28.1.6",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"@vitejs/plugin-react": "2.0.1",
"autoprefixer": "10.4.8",
"eslint": "8.22.0",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"postcss": "8.4.16",
"prettier": "2.7.1",
"sass": "1.54.4",
"tailwindcss": "3.1.8",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "4.7.4",
"vite": "3.0.7"
},
"postcss": {
"plugins": {
"autoprefixer": {},
"tailwindcss": {}
}
},
"scripts": {
"build": "tsc && vite build",
"lint:js": "eslint src",
"format": "prettier -w src",
"preview": "vite preview",
"start": "vite",
"test": "jest"
}
}