forked from brandly/Lax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.8 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
{
"name": "Lax",
"version": "0.6.4",
"description": "IRC client built with Electron & React",
"private": true,
"scripts": {
"start": "npm run sass && NODE_ENV=production electron ./",
"dev": "npm run sass && 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.13.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-linkify": "1.0.0-alpha",
"react-redux": "7.1.3",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"slate-irc": "0.9.0",
"uuid": "3.2.1"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.8.4",
"@babel/preset-env": "7.8.4",
"@babel/preset-flow": "7.8.3",
"@babel/preset-react": "7.8.3",
"@babel/register": "7.8.3",
"babel-eslint": "10.0.3",
"babel-jest": "25.1.0",
"babel-plugin-transform-node-env-inline": "0.4.3",
"electron": "8.0.0",
"electron-devtools-installer": "2.2.4",
"electron-packager": "14.2.1",
"electron-reloader": "1.0.0",
"eslint": "6.2.2",
"eslint-config-standard": "14.0.1",
"eslint-config-standard-react": "9.0.0",
"eslint-plugin-flowtype": "4.2.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-standard": "4.0.1",
"flow-bin": "0.118.0",
"glow": "1.2.2",
"jest": "25.1.0",
"node-sass": "4.13.1",
"redux-logger": "3.0.6"
}
}