-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
62 lines (62 loc) · 1.85 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
{
"name": "Lax",
"version": "0.6.6",
"description": "IRC client built with Electron & React",
"private": true,
"scripts": {
"start": "npm run sass && cross-env NODE_ENV=production electron ./",
"dev": "npm run sass && cross-env NODE_ENV=development electron ./",
"sass": "node-sass src/sass/app.scss --output src/static/",
"test": "npm run lint && npm run flow && npm run jest",
"lint": "eslint src/ test/",
"jest": "jest --verbose",
"flow": "glow",
"build": "bin/build"
},
"main": "index.js",
"main-html": "src/index.html",
"author": "Matthew Brandly, brandly.me",
"license": "MIT",
"dependencies": {
"classnames": "2.2.6",
"electron-util": "0.14.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-linkify": "0.2.2",
"react-redux": "7.2.1",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"slate-irc": "0.9.0",
"uuid": "8.3.0"
},
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.11.4",
"@babel/preset-env": "7.11.0",
"@babel/preset-flow": "7.10.4",
"@babel/preset-react": "7.10.4",
"@babel/register": "7.10.5",
"babel-eslint": "10.1.0",
"babel-jest": "26.3.0",
"babel-plugin-transform-node-env-inline": "0.4.3",
"cross-env": "^7.0.2",
"electron": "8.2.4",
"electron-devtools-installer": "3.1.1",
"electron-packager": "15.1.0",
"electron-reloader": "1.0.1",
"eslint": "7.7.0",
"eslint-config-standard": "14.1.1",
"eslint-config-standard-react": "9.2.0",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-standard": "4.0.1",
"flow-bin": "0.131.0",
"glow": "1.2.2",
"jest": "26.4.2",
"node-sass": "4.14.1",
"redux-logger": "3.0.6"
}
}