-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 4.41 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "GrandView",
"productName": "GrandView",
"description": "Helps you structure a large set of information units. Can be used as a tool to plan and gather resources for reports/theses and so on.",
"version": "1.0.1",
"company": "Concept NTNU",
"homepage": "https://github.com/bompi88/grand-view",
"author": {
"name": "Bjørn Bråthen",
"email": "[email protected]",
"url": "https://github.com/bompi88"
},
"contributors": [
{
"name": "Andreas Drivenes"
}
],
"main": ".index.js",
"electron_version": "1.6.10",
"mongo_version": "3.2.0",
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"adm-zip": "^0.4.7",
"babel-core": "6.x.x",
"babel-eslint": "^7.2.3",
"babel-plugin-react-require": "2.x.x",
"babel-polyfill": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-react": "6.x.x",
"babel-preset-stage-2": "6.x.x",
"babel-root-slash-import": "^1.1.0",
"chai": "3.x.x",
"colors": "^1.1.2",
"electron": "^1.6.10",
"electron-builder": "^19.27.7",
"electron-packager": "^8.7.1",
"electron-rebuild": "^1.5.7",
"enzyme": "^2.2.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-meteor": "^4.0.1",
"eslint-plugin-react": "^7.0.1",
"gunzip-maybe": "^1.3.1",
"minimist": "^1.2.0",
"mocha": "2.x.x",
"react-addons-test-utils": "^15.0.0",
"shelljs": "^0.5.3",
"sinon": "1.17.x",
"tar": "^2.2.1"
},
"dependencies": {
"archiver": "^1.0.0",
"asar-require": "^0.3.0",
"async": "^1.5.2",
"bootbox": "^4.4.0",
"debounce": "^1.0.0",
"domready": "^1.0.8",
"electron-log": "^2.2.7",
"electron-updater": "^2.16.1",
"fast-image-size": "^0.1.3",
"fs-extra": "^0.30.0",
"jimp": "^0.2.28",
"jquery": "^3.2.1",
"magnific-popup": "^1.1.0",
"mantra-core": "^1.7.0",
"meteor-node-stubs": "^0.2.3",
"mime-types": "^2.1.15",
"officegen": "^0.2.10",
"prop-types": "^15.5.10",
"react": "^15.x.x",
"react-addons-css-transition-group": "^15.2.1",
"react-bootstrap": "^0.30.0-rc.2",
"react-contenteditable": "^2.0.2",
"react-contextmenu": "^1.6.2",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.x.x",
"react-dropzone": "^3.12.4",
"react-linkify": "^0.2.1",
"react-mounter": "^1.2.0",
"react-notifications": "^1.2.0",
"react-redux": "^4.4.5",
"react-select": "^1.0.0-rc.5",
"redux-form": "^6.1.1",
"redux-logger": "^2.7.0",
"redux-undo": "^0.6.1",
"rimraf": "^2.5.3",
"string": "^3.3.1",
"tar-stream": "^1.5.2",
"win-clipboard": "0.0.4"
},
"scripts": {
"dev": "node .scripts/run",
"reset": "meteor reset",
"prebuild": "",
"build": "node ./.scripts/publish.js",
"build:verbose": "DEBUG=electron-builder node ./.scripts/publish.js",
"build:osx": "node .scripts/download --platform=darwin --arch=x64 && node .scripts/prepare --platform=darwin --arch=x64 && npm run build -- --platform=darwin --arch=x64",
"build:osx:verbose": "node .scripts/download --platform=darwin --arch=x64 && METEOR_DEBUG_BUILD=1 node .scripts/prepare --platform=darwin --arch=x64 && npm run build:verbose -- --platform=darwin --arch=x64",
"build:linux:x86": "node .scripts/download --platform=linux --arch=x86 && node .scripts/prepare --platform=linux --arch=x86 && npm run build:verbose -- --platform=linux --arch=x86",
"build:linux:x64": "node .scripts/download --platform=linux --arch=x64 && node .scripts/prepare --platform=linux --arch=x64 && npm run build:verbose -- --platform=linux --arch=x64",
"build:win": "node .scripts/download --platform=win32 && node .scripts/prepare --platform=win32 && npm run build -- --platform=win32",
"build:win:x64": "node .scripts/download --platform=win32 && node .scripts/prepare --platform=win32 && npm run build -- --platform=win32",
"lint": "eslint ./lib ./client ./server --ext .js",
"lintfix": "npm run lint -- --fix",
"test:build": "node .scripts/test_build",
"test": "meteor test --driver-package=practicalmeteor:mocha",
"pretest": "npm run lint --silent",
"test-watch": "npm run testonly -- --watch --watch-extensions js,jsx"
},
"eslintConfig": {
"extends": "@meteorjs/eslint-config-meteor"
},
"private": true
}