-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.46 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
{
"name": "flow",
"description": "An electron utility for managing and executing external scripts used in the Digitization department of the FLMNH",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack --env.minify=false",
"package": "electron-builder",
"build": "yarn compile && yarn package",
"release": "yarn version && git push && git push --tags"
},
"dependencies": {
"@types/lodash": "^4.14.159",
"axios": "^0.19.2",
"clsx": "^1.1.1",
"cssnano": "^4.1.10",
"electron-is": "^3.0.0",
"electron-store": "^6.0.0",
"framer-motion": "^2.4.1",
"glob": "^7.1.6",
"history": "^5.0.0",
"lodash": "^4.17.20",
"menubar": "^9.0.1",
"mobx": "^5.15.6",
"mobx-react-lite": "^2.2.1",
"mobx-state-tree": "^3.17.2",
"node-fetch": "^2.6.1",
"open": "^7.3.0",
"postcss": "^7",
"react": "^16.13.1",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^16.13.1",
"react-json-view": "^1.19.1",
"react-outside-click-handler": "^1.3.0",
"react-router-dom": "^6.0.0-alpha.5",
"react-sage": "^0.1.3",
"react-virtualized": "^9.22.2",
"source-map-support": "^0.5.19",
"swipeable-react": "1.2.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat"
},
"devDependencies": {
"@babel/preset-react": "^7.10.4",
"@flmnh-mgcl/ui": "^1.0.19",
"@flmnh-mgcl/ui-tailwind-config": "^1.0.1",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/postcss7-compat": "^2.0.3",
"@tailwindcss/typography": "^0.4.0",
"@tailwindcss/ui": "^0.7.2",
"@types/node": "^14.0.27",
"@types/react": "^16.9.38",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^16.9.8",
"@types/react-outside-click-handler": "^1.3.0",
"@types/react-virtualized": "^9.21.10",
"autoprefixer": "^9",
"electron": "^9.2.0",
"electron-builder": "^22.8.0",
"electron-rebuild": "^1.11.0",
"electron-updater": "^4.3.4",
"electron-webpack": "^2.8.2",
"electron-webpack-ts": "^4.0.1",
"node-forge": "^0.10.0",
"postcss-loader": "^3.0.0",
"style-loader": "^1.2.1",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"tailwind-caret-color": "^1.1.0",
"typescript": "^3.9.7",
"webpack": "^4.44.1"
},
"electronWebpack": {
"renderer": {
"webpackConfig": "webpack.renderer.additions.js"
}
}
}