-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.63 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
{
"private": true,
"name": "my-nextron-app",
"description": "My application description",
"version": "1.0.0",
"author": "Yoshihide Shiono <shiono.yoshihide@gmail.com>",
"main": "app/background.js",
"scripts": {
"dev": "nextron",
"build": "nextron build",
"postinstall": "electron-builder install-app-deps",
"build:win64": "nextron build --win --x64",
"build:mac": "nextron build --mac --x64",
"test": "jest --coverage"
},
"dependencies": {
"electron-serve": "^1.1.0",
"electron-store": "^8.1.0"
},
"devDependencies": {
"@ant-design/icons": "^4.7.0",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-decorators": "^7.20.13",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@hookform/resolvers": "^2.9.10",
"@reactivex/rxjs": "^6.6.7",
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/firebase": "^3.2.1",
"@types/jest": "^29.4.0",
"@types/jest-plugin-context": "^2.9.5",
"@types/node": "^18.11.18",
"@types/randomcolor": "^0.5.7",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"antd": "^4.22.8",
"babel-jest": "^29.4.1",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"constate": "^3.3.2",
"electron": "^21.3.3",
"electron-builder": "^23.6.0",
"emotion-reset": "^3.0.1",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"firebase": "^9.16.0",
"inversify": "^6.0.1",
"jest": "^29.4.1",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^29.4.1",
"jest-plugin-context": "^2.9.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "^12.3.4",
"next-router-mock": "^0.9.1",
"nextron": "^8.4.0",
"prettier": "^2.8.3",
"randomcolor": "^0.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.42.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"ts-jest": "^29.0.5",
"ts-mockito": "^2.6.1",
"typescript": "^4.9.4",
"yup": "^0.32.11"
}
}