This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 243
/
package.json
75 lines (75 loc) · 2.42 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
{
"name": "chorus",
"version": "0.0.1",
"description": "Clone Hero-friendly Organized Repository of User-provided Songs",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Paturages/chorus"
},
"dependencies": {
"csv-parse": "^4.10.1",
"express": "^4.17.1",
"glob": "^7.1.6",
"google-auth-library": "^6.0.4",
"googleapis": "^52.1.0",
"iconv-lite": "^0.6.2",
"midifile": "^2.0.0",
"node-7z": "^2.1.1",
"pg": "^8.3.0",
"request": "^2.88.2",
"request-progress": "^3.0.0",
"rimraf": "^3.0.2",
"url-search-params": "^1.1.0",
"xlsx": "^0.16.3"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-loader": "^8.1.0",
"babel-plugin-inferno": "^6.1.1",
"browser-sync": "^2.26.7",
"css-loader": "^3.6.0",
"es5-shim": "^4.5.14",
"es6-shim": "^0.35.5",
"file-loader": "^6.0.0",
"http-proxy-middleware": "^1.0.5",
"inferno": "^7.4.2",
"inferno-component": "^7.4.2",
"inferno-router": "^7.4.2",
"mini-css-extract-plugin": "^0.9.0",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"prettier-loader": "^3.3.0",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.0.9"
},
"scripts": {
"import": "node index.js",
"import:arcturus": "node --optimize_for_size --max-old-space-size=64 index.js",
"start": "npm-run-all --parallel server webpack-dev browser-sync",
"start:frontend": "FRONTEND=1 npm-run-all --parallel webpack-dev browser-sync:frontend",
"server": "nodemon server.js --watch server.js --watch dist/index.html --watch src/utils",
"webpack-dev": "webpack --config webpack/dev.conf.js --watch",
"browser-sync": "browser-sync start --config browser-sync.json",
"browser-sync:frontend": "browser-sync start --single --config browser-sync.frontend.js",
"build": "webpack --config webpack/build.conf.js",
"postinstall": "webpack --config webpack/dev.conf.js"
},
"prettier": {
"singleQuote": true
},
"author": "",
"license": "GPL-3.0"
}