-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.2 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
{
"name": "automaton",
"version": "1.0.0",
"description": "Home Automation software for Raspberry Pi",
"main": "./dist/main-process.js",
"author": "Dylan Parry",
"license": "MIT",
"private": true,
"dependencies": {
"axios": "^0.15.3",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-react": "^6.23.0",
"chartist": "^0.10.1",
"cross-env": "^3.2.4",
"electron": "1.6.3",
"electron-packager": "^8.6.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"font-awesome": "^4.7.0",
"jest": "^19.0.2",
"jquery": "^3.2.1",
"leftpad": "^0.0.0",
"metro-dist": "^3.0.15",
"mobx": "^3.1.7",
"mobx-react": "^4.1.3",
"moment": "^2.18.0",
"react": "^15.4.2",
"react-chartist": "^0.12.0",
"react-dom": "^15.4.2",
"react-router": "^4.0.0",
"react-router-dom": "^4.0.0",
"webpack": "^2.3.1"
},
"scripts": {
"dev": "webpack --watch --progress --colors",
"start": "cross-env NODE_ENV=test electron .",
"test": "jest",
"lint": "eslint ./ --ext .jsx,.js",
"prebuild": "webpack -p --progress --colors --env.production",
"build": "electron-packager . --out packages --overwrite --arch armv7l --platform linux --asar"
},
"babel": {
"presets": [
[
"latest"
],
[
"react"
]
],
"plugins": [
"transform-decorators-legacy",
"transform-class-properties",
"transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"brace-style": [
"error",
"allman"
],
"react/jsx-closing-bracket-location": [
2,
{
"nonEmpty": "tag-aligned",
"selfClosing": "after-props"
}
]
},
"env": {
"browser": true,
"node": true,
"jest": true
}
}
}