-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 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
{
"name": "electronm3umanager",
"version": "1.0.0",
"description": "will review the m3u files and organize the directories",
"main": "index.js",
"scripts": {
"test": "mocha --reporter progress buildScripts/testSetup.js \"*.test.js\"",
"prestart": "node prestart.js",
"elect": "electron .",
"start": "npm-run-all --parallel elect lint:watch test:watch",
"lint": "esw webpack.config.* src buildScripts --color",
"lint:watch": "npm run lint -- --watch",
"security-check": "nsp check",
"test:watch": "npm run test -- --watch",
"generate-mock-data": "babel-node buildScripts/generateMockData",
"prestart-mockapi": "npm run generate-mock-data",
"clean-dist": "rimraf ./dist && mkdir dist",
"prebuild": "npm-run-all clean-dist test lint",
"build": "babel-node buildScripts/build.js",
"postbuild": "babel-node buildScripts/distServer.js",
"deploy": "surge ./dist"
},
"author": "S Lamarre",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "6.17.0",
"babel-loader": "6.2.5",
"babel-preset-latest": "6.16.0",
"babel-register": "6.16.3",
"braces": "^3.0.2",
"chai": "3.5.0",
"chalk": "1.1.3",
"cheerio": "0.22.0",
"compression": "^1.7.3",
"cross-env": "3.1.3",
"css-loader": "^2.1.1",
"electron": "^8.0.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.16.0",
"eslint-watch": "^5.0.1",
"express": "^4.16.4",
"extract-text-webpack-plugin": "1.0.1",
"html-webpack-plugin": "^3.2.0",
"jsdom": "9.8.0",
"json-schema-faker": "^0.4.7",
"json-server": "^0.16.1",
"karma": "^5.1.0",
"localtunnel": "^2.0.0",
"lodash": "^4.17.15",
"mem": "^6.1.0",
"mocha": "^6.2.0",
"nock": "^10.0.6",
"nodeunit": "^0.11.3",
"npm-run-all": "3.1.1",
"nsp": "^3.2.1",
"numeral": "1.5.3",
"open": "^6.0.0",
"rimraf": "2.5.4",
"style-loader": "0.13.1",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "1.8.4",
"webpack-hot-middleware": "2.13.0",
"webpack-md5-hash": "0.0.5",
"yargs-parser": "^18.1.3"
},
"dependencies": {
"acorn": "^6.4.1",
"acorn-dynamic-import": "^4.0.0",
"electron-reload": "^1.5.0",
"formidable": "^1.2.1",
"fs-extra": "^7.0.1",
"fsevents": "^2.1.2",
"handlebars": "^4.7.6",
"jquery": "^3.5.1",
"node-gyp": "^3.8.0",
"node-pre-gyp": "^0.14.0",
"should": "^13.2.3",
"underscore": "^1.9.1",
"whatwg-fetch": "^3.0.0"
}
}