-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.99 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.99 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
{
"name": "mgr-app",
"version": "1.0.0",
"description": "Front-end app for mgr-service",
"main": "source/index.ts",
"scripts": {
"test": "jest --watch",
"lint": "eslint --ext=.ts source/** test/**",
"lint:fix": "eslint --ext .ts . --fix",
"build": "BUILD_ENV=production webpack",
"build:dev": "BUILD_ENV=development webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jramcast/mgr-app.git"
},
"keywords": [
"ai",
"mir",
"music",
"genre",
"classification",
"deep",
"learning"
],
"dependencies": {
"axios": "^0.19.0",
"chart.js": "^2.9.3"
},
"devDependencies": {
"@types/chart.js": "^2.8.11",
"@types/jest": "^24.0.22",
"@types/jsdom": "^12.2.4",
"@types/youtube": "0.0.38",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.12.3",
"jasmine-core": "^3.5.0",
"jest": "^24.9.0",
"jsdom": "^15.2.1",
"style-loader": "^1.0.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"author": "jaime.ram@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/jramcast/mgr-app/issues"
},
"homepage": "https://github.com/jramcast/mgr-app#readme",
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/test/**/*.+(spec|test).(ts|js)"
],
"testEnvironment": "jsdom",
"collectCoverageFrom": [
"source/**"
],
"watchPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}