forked from friendsofagape/autographa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.52 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "autographa",
"productName": "autographa-editor",
"description": "A Bible translation editor for everyone.",
"email": "[email protected]",
"author": "Friends of Agape <[email protected]>",
"version": "2.0.0",
"license": "MIT",
"main": "main/index.js",
"scripts": {
"clean": "rimraf dist renderer/.next renderer/out",
"start": "electron .",
"dev": "next dev",
"test": "jest",
"lint": "eslint ./renderer/src",
"lint:fix": "eslint ./renderer/src --fix",
"build": "next build",
"maxmemory-allocation": "NODE_OPTIONS=--max_old_space_size=4096",
"eslint:github-action": "node ./node_modules/eslint/bin/eslint . --ignore-path .gitignore --max-warnings 0",
"pack-app": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder -p never",
"postbuild": "next export"
},
"eslintIgnore": [
"*.test.js"
],
"build": {
"asar": true,
"files": [
"main",
"renderer/out"
],
"linux": {
"target": [
"deb"
]
}
},
"devDependencies": {
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@netlify/plugin-nextjs": "^3.0.3",
"@svgr/webpack": "^5.5.0",
"@tailwindcss/jit": "0.1.18",
"@testing-library/dom": "^7.25.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "12.1.7",
"autoprefixer": "^10.2.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-react-intl": "^3.0.1",
"buffer-loader": "^0.1.0",
"canvas": "^2.8.0",
"electron": "^10.1.3",
"electron-builder": "^22.9.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-next": "^11.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^26.6.3",
"jest-dom": "^4.0.0",
"null-loader": "^4.0.1",
"postcss": "^8.3.5",
"prettier": "^2.3.0",
"tailwindcss": "^2.1.4"
},
"dependencies": {
"@headlessui/react": "^1.2.0",
"@heroicons/react": "^1.0.1",
"@material-ui/core": "^4.9.12",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "latest",
"@ory/kratos-client": "^0.5.4-alpha.1",
"@parse/react-ssr": "0.0.1-alpha.14",
"@tailwindcss/forms": "^0.3.2",
"bible-reference-rcl": "^0.2.0",
"clsx": "1.1.1",
"electron-is-dev": "^1.1.0",
"electron-log": "4.2.4",
"electron-next": "^3.1.5",
"electron-updater": "^4.3.4",
"eslint-import-resolver-alias": "^1.1.2",
"gitea-react-toolkit": "^1.3.5",
"is-electron": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"localforage": "1.9.0",
"markdown-translatable": "^1.0.4",
"mobx": "5.15.4",
"mobx-react": "6.3.0",
"moment": "^2.28.0",
"next": "latest",
"next-on-netlify": "^2.6.3",
"next-transpile-modules": "^8.0.0",
"nprogress": "^0.2.0",
"parse": "^3.1.0",
"postcss-import": "^14.0.2",
"postcss-nested": "^5.0.5",
"prefs-rcl": "^0.1.8",
"prop-types": "15.7.2",
"raw-loader": "^4.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^5.18.0",
"sweetalert": "2.1.2",
"translation-helps-rcl": "^1.5.0",
"usfm-editor": "0.8.0-SNAPSHOT.6",
"usfm-grammar": "^2.0.0",
"webpack-node-externals": "^3.0.0",
"winston": "^3.3.3",
"ws": "^7.5.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.3",
"utf-8-validate": "^5.0.5",
"scripture-resources-rcl": "^3.2.0"
}
}