-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.79 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
{
"name": "landmarker.app",
"version": "0.1.1",
"description": "",
"main": "main.js",
"build": {
"appId": "landmarker.app",
"mac": {
"category": "public.app-category.utilities",
"target": [
"zip",
"dmg"
]
},
"linux": {
"category": "Utility",
"target": [
"deb"
]
},
"nsis": {
"perMachine": true
},
"publish": [
{
"provider": "github"
}
]
},
"scripts": {
"start": "npm run build && electron .",
"electron": "electron .",
"build": "webpack --config ./webpack/webpack.prod.config.js",
"watch": "webpack --config ./webpack/webpack.dev.config.js --progress --colors --watch",
"dist:clean": "rm -rf dist",
"dist:clean-osx": "rm -rf dist/mac* && rm -f dist/*.zip && rm -f dist/*.dmg",
"dist:clean-win": "rm -rf dist/win* && rm -f dist/*.exe",
"dist:clean-linux": "rm -rf dist/linux* && rm -f dist/*.deb",
"dist:osx": "npm run build && npm run dist:clean-osx && build -m",
"dist:win": "npm run build && npm run dist:clean-win && build -w",
"dist:linux": "npm run build && npm run dist:clean-linux && build -l",
"dist": "npm run build && npm run dist:clean && build -mwl",
"submodule": "git submodule update --init --remote",
"postinstall": "npm run submodule && install-app-deps"
},
"author": "lirsacc <[email protected]>",
"license": "BSD",
"dependencies": {
"@types/backbone": "^1.3.33",
"@types/es6-promise": "0.0.32",
"@types/jquery": "^2.0.40",
"@types/js-yaml": "^3.5.29",
"@types/lodash": "^4.14.52",
"@types/node": "^7.0.4",
"@types/react": "^15.0.5",
"@types/react-dom": "^0.14.22",
"@types/three": "0.83.1",
"appcache-webpack-plugin": "^1.3.0",
"autoprefixer": "^6.7.7",
"backbone": "^1.1.2",
"css-loader": "^0.26.1",
"drag-drop": "^2.13.2",
"electron-is-dev": "^0.1.2",
"electron-updater": "^1.12.0",
"es6-promise": "^4.0.5",
"file-loader": "^0.11.0",
"jquery": "^3.1.1",
"js-yaml": "^3.3.1",
"json-loader": "^0.5.4",
"lodash.assign": "^4.2.0",
"node-sass": "^3.4.0",
"postcss-loader": "^1.2.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"request-json": "^0.6.1",
"resolve-url-loader": "^1.6.1",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"three": "^0.84.0",
"ts-loader": "^1.3.3",
"tslint": "^4.2.2",
"typescript": "^2.1.5",
"typescript-collections": "^1.2.3",
"underscore": "^1.8.3",
"url-loader": "^0.5.8",
"webpack": "^1.12.2"
},
"devDependencies": {
"asar": "^0.7.2",
"babel-eslint": "^3.1.23",
"babelify": "^6.1.3",
"electron": "^1.6.2",
"electron-builder": "^17.0.1",
"electron-debug": "^1.1.0",
"eslint": "^1.0.0-rc-1",
"watchify": "^3.3.1"
}
}