-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 4.09 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
{
"name": "librarian",
"homepage": "https://github.com/librarian-org/librarian#readme",
"repository": {
"type": "git",
"url": "https://github.com/librarian-org/librarian"
},
"bugs": {
"url": "https://github.com/librarian-org/librarian/issues"
},
"productName": "librarian",
"version": "1.0.0-alpha.2",
"description": "The Librarian app is ideal for schools libraries and for someone who have many books.",
"main": ".webpack/main",
"scripts": {
"librarian:migration": "yarn tsc --project tsconfig.migration.json",
"start": "yarn librarian:migration && yarn electron-forge start",
"package": "electron-forge package",
"make": "yarn librarian:migration && yarn electron-forge make",
"librarian:publish": "yarn librarian:migration && yarn electron-forge publish",
"lint": "eslint --ext .ts,.tsx .",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"test": "jest --passWithNoTests --runInBand --no-cache --verbose --detectOpenHandles"
},
"keywords": [],
"author": {
"name": "Danilo Lutz",
"email": "[email protected]",
"url": "https://danilolutz.dev"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@electron-forge/cli": "6.0.0-beta.63",
"@electron-forge/maker-deb": "6.0.0-beta.63",
"@electron-forge/maker-rpm": "6.0.0-beta.63",
"@electron-forge/maker-squirrel": "6.0.0-beta.63",
"@electron-forge/maker-zip": "6.0.0-beta.63",
"@electron-forge/plugin-webpack": "6.0.0-beta.63",
"@electron-forge/publisher-github": "6.0.0-beta.63",
"@fontsource/nunito": "^4.5.4",
"@types/bcryptjs": "^2.4.2",
"@types/i18next-fs-backend": "^1.1.2",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@types/react-modal": "^3.13.1",
"@types/react-table": "^7.7.9",
"@types/styled-components": "^5.1.15",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"@vercel/webpack-asset-relocator-loader": "1.7.0",
"babel-jest": "^27.5.1",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"copy-webpack-plugin": "^9.1.0",
"css-loader": "^6.0.0",
"electron": "15.3.1",
"eslint": "^7.6.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-react-hooks": "^4.3.0",
"fork-ts-checker-webpack-plugin": "^6.0.1",
"git-commit-msg-linter": "^3.2.8",
"jest": "^27.5.1",
"node-gyp": "^8.4.1",
"node-loader": "^2.0.0",
"standard-version": "^9.3.2",
"style-loader": "^3.0.0",
"terser-webpack-plugin": "^5.3.0",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.2",
"typescript": "^4.0.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"date-fns": "^2.27.0",
"electron-is-dev": "^2.0.0",
"electron-log": "^4.4.4",
"electron-squirrel-startup": "^1.0.0",
"i18next": "^21.4.2",
"i18next-browser-languagedetector": "^6.1.2",
"i18next-electron-fs-backend": "^2.0.0",
"i18next-fs-backend": "^1.1.4",
"immutability-helper": "^3.1.1",
"jsbarcode": "^3.11.5",
"polished": "^4.1.3",
"react": "^17.0.2",
"react-dnd": "^14.0.4",
"react-dnd-html5-backend": "^14.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.14.2",
"react-icons": "^4.3.1",
"react-modal": "^3.14.4",
"react-router-dom": "^6.2.1",
"react-select": "^5.2.1",
"react-spinners-kit": "^1.9.1",
"react-spring": "^9.3.2",
"react-table": "^7.7.0",
"recharts": "^2.1.13",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"styled-components": "^5.3.3",
"ts-node": "^10.4.0",
"typeorm": "^0.2.41",
"update-electron-app": "^2.0.1",
"uuid": "^8.3.2"
}
}