-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.98 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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "df-companion",
"version": "0.0.1",
"description": "Dwarf Fortress Companion helps you play Dwarf Fortress",
"main": "dist/main/index.js",
"scripts": {
"test": "npm run lint && npm run mocha",
"pack": "build --dir",
"dist": "build",
"postinstall": "install-app-deps",
"start-dev-electron": "electron -r babel-register -r babel-polyfill ./src/main",
"start-dev-server": "node -r babel-register ./node_modules/webpack-dev-server/bin/webpack-dev-server --config ./src/webpack/index.js",
"knex": "cd src/database && knex"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthemsteger/df-companion.git"
},
"bugs": {
"url": "https://github.com/matthemsteger/df-companion/issues"
},
"keywords": [
"dwarf fortress"
],
"author": "Matt Hemsteger",
"license": "MIT",
"build": {
"appId": "matthemsteger.df.companion",
"mac": {
"category": "public.app-category.simulation-games"
}
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"bluebird": "^3.5.0",
"bulma": "^0.4.2",
"date-fns": "^1.28.5",
"df-tools": "*",
"electron-devtools-installer": "^2.2.0",
"electron-log": "^2.2.6",
"fela": "^4.3.5",
"fela-beautifier": "^4.3.5",
"fela-dom": "^4.3.5",
"fela-perf": "^4.3.5",
"fela-plugin-fallback-value": "^4.3.5",
"fela-plugin-logger": "^4.3.5",
"fela-plugin-lvha": "^4.3.5",
"fela-plugin-prefixer": "^4.3.5",
"fela-plugin-unit": "^4.3.5",
"fela-plugin-validator": "^4.3.5",
"font-awesome": "^4.7.0",
"joi": "^10.5.1",
"joi-validation-strategy": "^0.3.3",
"knex": "^0.13.0",
"lodash": "^4.17.4",
"objection": "^0.8.1",
"prop-types": "^15.5.10",
"ramda": "^0.24.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-fela": "^4.3.5",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"sqlite3": "^3.1.8",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.0",
"chai-sinon": "^2.8.1",
"css-loader": "^0.28.4",
"devtron": "^1.4.0",
"electron": "^1.7.2",
"electron-builder": "^18.1.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.1",
"file-loader": "^0.11.1",
"mocha": "^3.4.2",
"node-sass": "^4.5.3",
"nyc": "^10.3.2",
"proxyquire": "^1.8.0",
"sass-loader": "^6.0.5",
"sinon": "^2.3.2",
"style-loader": "^0.18.1",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}