-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.08 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.08 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
{
"name": "mop",
"version": "0.1.0",
"private": false,
"dependencies": {
"@mopjs/dzdownloadernode": "^1.0.17",
"@types/lodash": "^4.14.168",
"array-move": "^3.0.1",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.0",
"chalk": "^4.0.0",
"compression": "^1.7.4",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"elasticsearch": "^16.7.1",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-jest": "^23.13.1",
"eva-icons": "^1.1.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"fluent-logger": "^3.4.1",
"lodash": "^4.17.20",
"mongodb": "^3.5.7",
"mongoosastic": "^4.6.0",
"mongoose": "^5.9.15",
"musicmetadata": "^2.0.5",
"node-id3": "^0.2.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1",
"prop-types": "^15.7.2",
"query-string": "^6.12.1",
"queue": "^6.0.1",
"react": "^16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.13.1",
"react-draggable": "^4.4.3",
"react-hook-form": "^5.7.2",
"react-hot-loader": "^4.12.21",
"react-lazyload": "^2.6.7",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"react-sortable-hoc": "^1.11.0",
"redux": "^4.0.5",
"send-seekable": "^1.0.4",
"stream-cache": "0.0.2"
},
"main": "./Build",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@types/elasticsearch": "^5.0.37",
"@types/express": "^4.17.9",
"@types/express-session": "^1.17.3",
"@types/mongoose": "^5.10.3",
"@types/mongodb": "^3.6.3",
"@types/node": "^14.14.13",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.10.0",
"arkit": "^1.6.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"file-loader": "^6.0.0",
"jest": "^26.0.1",
"mongodb-memory-server": "^6.6.0",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"test": "tsc --project tsconfig.test.json && jest ./Build --runInBand --detectOpenHandles",
"StartAll": "webpack --mode production && node index.js",
"BuildClient": "webpack --mode development --watch",
"BuildClientProd": "webpack --mode production --watch",
"StartServer": "node ./Build/index.js",
"ClearAlbumStatus": "node Utils.js",
"clean": "node clean.js",
"deptree": "",
"build-ts": "tsc -b --verbose",
"build-react": "webpack --mode production"
},
"settings": {
"import/resolver": {
"typescript": {}
}
},
"jest": {
"testMatch": [
"**/Build/**/*.test.js"
]
}
}