forked from ChicoState/GoodDays
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1 KB
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
{
"name": "gooddays",
"version": "0.1.0",
"private": true,
"main": "main.js",
"scripts": {
"electron": "electron ./main.js",
"build": "rollup --config ./rollup.config.mjs",
"build-watch": "rollup --config ./rollup.config.mjs --watch"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"dependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-typescript": "^12.1.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"electron": "^32.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.22.4",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
},
"devDependencies": {
"electron-is-dev": "^1.2.0",
"enzyme": "^3.11.0",
"react-calendar": "^5.0.0",
"react-router-dom": "^6.26.2",
"rollup-plugin-postcss": "^4.0.2"
}
}