-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.23 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
{
"name": "edon",
"version": "1.0.0",
"description": "server GUI for node.js",
"main": "app/main.js",
"scripts": {
"start": "electron .",
"watch": "webpack --watch",
"test": "jest",
"pack": "build --dir",
"dist": "build"
},
"build": {
"appId": "20EDON17",
"mac": {
"category": "productivity"
},
"win": {
"asar" : false
}
},
"repository": {
"type": "git",
"url": "[email protected]:sarahschuetz/IM531_ProjectT2.git"
},
"author": "David Messerer, Sarah Schütz",
"license": "ISC",
"bugs": {
"url": "https://github.com/sarahschuetz/IM531_ProjectT2/issues"
},
"homepage": "https://github.com/sarahschuetz/IM531_ProjectT2",
"dependencies": {
"body-parser": "^1.17.2",
"electron-store": "^1.1.0",
"errorhandler": "^1.5.0",
"express": "^4.15.2",
"method-override": "^2.3.9",
"prop-types": "^15.5.8",
"radium": "^0.19.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^4.3.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"electron": "^1.6.7",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"cross-env": "^5.0.0",
"css-loader": "^0.28.1",
"electron-builder": "^19.2.5",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^7.0.0",
"file-loader": "^0.11.1",
"jest": "^20.0.4",
"react-test-renderer": "^15.5.4",
"redux-devtools": "^3.4.0",
"redux-mock-store": "^1.2.3",
"style-loader": "^0.17.0",
"url-loader": "^0.5.8",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"babel": {
"presets": [
"es2015",
"stage-1",
"react"
],
"plugins": [
"transform-decorators-legacy"
]
}
}