-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.75 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.75 KB
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
119
120
{
"name": "movienight",
"description": "Search your digital movie collection while offline",
"version": "2.0.0-beta",
"author": "Brian Lenoski <brian.lenoski@gmail.com>",
"productName": "Movie Night",
"main": "./bundle/main.js",
"scripts": {
"start": "npm run build && cross-env NODE_ENV=production electron .",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js --progress --profile --colors",
"start:dev": "npm run build:dev && cross-env NODE_ENV=development electron .",
"build:dev": "cross-env NODE_ENV=development webpack --config webpack.config.js --progress --profile --colors",
"start:devserver": "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js --output-public-path bundle --port 3000",
"test": "standard && npm run lint:css && npm run build && npm run test:all",
"test:all": "standard && npm run lint:css && cross-env NODE_ENV=test jest --coverage --verbose",
"test-ci": "standard && npm run lint:css && npm run build && npm run test-coveralls",
"test-coveralls": "cross-env NODE_ENV=test jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:watch": "cross-env NODE_ENV=test jest --watchAll",
"pack": "build --dir",
"dist": "npm run build && build",
"postinstall": "electron-builder install-app-deps",
"lint:css": "stylelint './app/renderer/**/*.js'"
},
"engines": {
"node": ">=8.14.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-react": "^6.24.1",
"coveralls": "^2.13.1",
"cross-env": "^5.0.0",
"css-loader": "^0.28.4",
"electron": "^4.0.1",
"electron-builder": "^20.38.5",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"jest": "^20.0.4",
"react-test-renderer": "^15.5.4",
"redux-logger": "^3.0.6",
"standard": "^10.0.2",
"style-loader": "^0.18.1",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^16.0.0",
"stylelint-processor-styled-components": "^0.1.0",
"uglifyjs-webpack-plugin": "^1",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"bootstrap": "4.0.0-alpha.6",
"classnames": "^2.2.5",
"electron-log": "^2.2.6",
"limiter": "^1.1.0",
"query-string": "^6.2.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-transition-group": "^1.1.3",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"styled-components": "^2.0.0",
"underscore": "^1.8.3"
},
"jest": {
"collectCoverageFrom": [
"app/**/*.{js,jsx}"
],
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 60,
"lines": 60,
"statements": 60
}
},
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"build": {
"appId": "org.confidentcruiser.movienight",
"mac": {
"category": "public.app-category.tools"
},
"dmg": {
"contents": [
{
"x": 100,
"y": 120
},
{
"x": 300,
"y": 120,
"type": "link",
"path": "/Applications"
}
]
},
"files": [
"bundle/",
"vendor/"
],
"win": {
"target": [
"nsis"
]
}
}
}