-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.97 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
{
"name": "tidyUp",
"productName": "tidyUp",
"version": "0.0.2",
"homepage": "./",
"main": "server/main.js",
"scripts": {
"start": "react-scripts start && npm run watch:css ",
"build": "npm run build:css && react-scripts build",
"serve": "electron .",
"rebuild": "electron-rebuild -f -w osx-fileicon",
"test": "react-scripts test",
"eject": "react-scripts eject",
"makedmg": "electron-installer-dmg ./release-builds/tidyUp-darwin-x64/tidyUp.app tidyUp",
"package": "electron-packager . --icon=tidyUp --out=release-builds --overwrite",
"build:css": "postcss src/styles/tailwind.css -o src/styles/main.css",
"watch:css": "postcss -w src/styles/tailwind.css -o src/styles/main.css"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"autoprefixer": "^9.8.6",
"electron": "^9.4.0",
"electron-installer-dmg": "^3.0.0",
"electron-packager": "^15.2.0",
"electron-rebuild": "^2.3.4",
"postcss": "^7.0.32",
"postcss-loader": "^3.0.0",
"tailwindcss": "^1.7.6"
},
"dependencies": {
"canvas-confetti": "^1.3.2",
"electron-store": "^6.0.1",
"electron-util": "^0.14.2",
"fs": "^0.0.1-security",
"fs-extra": "^9.0.1",
"jquery": "^3.5.1",
"mousetrap": "^1.6.5",
"node-gyp": "^7.1.0",
"node-persist": "^3.1.0",
"osx-fileicon": "0.0.2",
"react": "^16.13.1",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^16.13.1",
"react-resizable": "^1.11.0",
"react-scripts": "^3.4.4",
"react-spring": "^8.0.27",
"react-table": "^7.6.2",
"react-transition-group": "^4.4.1",
"springy": "^2.8.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}