-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "hue_app",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "next dev -p 1420",
"build": "next build && next export -o dist",
"tauri": "tauri",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@tauri-apps/api": "^1.2.0",
"axios": "^1.3.3",
"formik": "^2.2.9",
"next": "^13.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"swr": "^2.0.3",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@tauri-apps/cli": "^1.2.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.7.11",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"eslint": "^8.34.0",
"eslint-config-next": "^13.1.6",
"eslint-plugin-testing-library": "^5.10.2",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"typescript": "^4.7.4"
},
"engines": {
"node": "18"
}
}