-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.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
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
91
{
"name": "@dawsome/ui",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"ui:start": "vite dev --port 4431 --strictPort",
"ui:build": "vite build",
"ui:test": "jest",
"info": "tauri info",
"build": "tauri build",
"build:assets:link": "ln -s engine/assets/ engine/target/assets",
"dev": "tauri dev",
"debug": "cd engine && cargo run -- --debug",
"lint": "eslint . --ignore-path .gitignore && prettier --check .",
"lint:fix": "eslint . --fix --ignore-path .gitignore && pnpm format",
"format": "prettier -w src/"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.1",
"@tauri-apps/api": "1.0.0-rc.3",
"@tauri-apps/cli": "1.0.0-rc.8",
"@types/p5": "^1.4.3",
"@vitejs/plugin-react": "^1.3.0",
"autoprefixer": "10.4.4",
"browserslist": "4.18.1",
"install": "^0.13.0",
"npm": "^8.8.0",
"p5": "^1.5.0",
"postcss": "8.4.12",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-normalize": "10.0.1",
"postcss-preset-env": "7.0.1",
"react": "18.0.0",
"react-complex-tree": "^1.1.9",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "18.0.0",
"react-p5-wrapper": "^3.4.0",
"react-redux": "^8.0.0-beta.4",
"react-split-pane": "github:zirkelc/react-split-pane",
"react-tabs": "^6.0.0",
"sass": "1.49.10",
"swr": "1.2.2",
"tailwindcss": "3.0.23",
"ts-jest": "27.1.4",
"ts-node": "10.7.0",
"typescript": "4.6.3",
"uuid": "^9.0.0",
"vite": "2.9.1",
"vite-plugin-svgr": "1.1.0"
},
"devDependencies": {
"@testing-library/dom": "8.12.0",
"@testing-library/jest-dom": "5.16.3",
"@testing-library/react": "12.1.4",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.4.1",
"@types/node": "16.11.26",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"eslint": "8.3.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "16.1.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.4.0",
"jest": "27.4.3",
"jest-environment-jsdom": "27.5.1",
"jest-resolve": "27.4.2",
"jest-watch-typeahead": "1.0.0",
"prettier": "2.6.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}