-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.2 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.2 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
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
{
"name": "atomize",
"version": "0.1.0",
"description": "An electron-based IRC client",
"main": "index.js",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"prebuild": "rimraf dist",
"build": "npm run compile && electron-builder",
"build:dir": "npm run dist --dir -c.compression=store -c.mac.identity=null",
"pretty": "prettier --write \"./**/*.{ts,tsx,yaml}\"",
"pretty:ci": "prettier --check \"./**/*.{ts,tsx,yaml}\"",
"test": "jest",
"test:watch": "jest --watch",
"release": "standard-version",
"commit": "git-cz"
},
"author": "Alic Szecsei <aszecsei@gmail.com>",
"license": "ISC",
"repository": "github:aszecsei/atomize",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@emotion/babel-preset-css-prop": "^10.0.27",
"@types/electron-devtools-installer": "^2.2.0",
"@types/enzyme": "^3.10.4",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/irc": "^0.3.33",
"@types/jest": "^24.0.24",
"@types/react": "^16.9.17",
"@types/react-custom-scrollbars": "^4.0.6",
"@types/react-dom": "^16.9.4",
"@types/react-linkify": "^1.0.0",
"@types/react-outside-click-handler": "^1.3.0",
"@types/react-redux": "^7.1.5",
"@types/react-youtube": "^7.6.2",
"@types/redux-devtools-extension": "^2.13.2",
"@types/uuid": "^3.4.6",
"babel-plugin-emotion": "^10.0.27",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"electron": "^7.2.4",
"electron-builder": "^21.2.0",
"electron-devtools-installer": "^2.2.4",
"electron-webpack": "^2.7.4",
"electron-webpack-ts": "^3.2.0",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.4.3",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-emotion": "^10.0.27",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"standard-version": "^8.0.1",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4",
"webpack": "4.40.0"
},
"dependencies": {
"@emotion/core": "^10.0.27",
"@emotion/styled": "^10.0.27",
"electron-cfg": "^1.0.3",
"electron-log": "^4.0.0",
"electron-updater": "^4.2.0",
"emotion-theming": "^10.0.27",
"enzyme-adapter-react-16": "^1.15.2",
"get-urls": "^9.2.0",
"immer": "^5.1.0",
"irc": "^0.5.2",
"is-image": "^3.0.0",
"moment": "^2.24.0",
"polished": "^3.4.2",
"react": "^16.12.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.12.0",
"react-emoji-render": "^1.2.0",
"react-icons": "^3.8.0",
"react-linkify": "^1.0.0-alpha",
"react-outside-click-handler": "^1.3.0",
"react-popper": "^1.3.7",
"react-redux": "^7.1.3",
"react-youtube": "^7.9.0",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"source-map-support": "^0.5.16",
"uuid": "^3.3.3"
},
"electronWebpack": {
"whiteListedModules": [
"react-redux"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}