-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.73 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
{
"name": "musicplayer",
"description": "a music player for beets.io based on modern web technologies",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server --progress --inline --colors",
"build": "NODE_ENV=production webpack --progress --colors",
"build:debug": "NODE_ENV=debug webpack --progress --colors",
"lint": "jshint src/ test/ && eslint src/ test/",
"test": "jest"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"jest": {
"globals": {
"VERSION": "TEST"
}
},
"dependencies": {
"abortcontroller-polyfill": "^1.0.7",
"dialog-polyfill": "^0.4.9",
"hammerjs": "^2.0.8",
"lodash": "^4.17.13",
"material-design-lite": "^1.3.0",
"nosleep.js": "^0.7.0",
"vue": "^2.6.8"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"@types/lodash": "^4.14.116",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.1.1",
"css-loader": "^0.28.7",
"eslint": "^4.8.0",
"fake-indexeddb": "^2.0.3",
"file-loader": "^1.1.4",
"git-revision-webpack-plugin": "^2.5.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.3.1",
"jsdom": "11.3.0",
"jsdom-global": "3.0.2",
"jshint": "^2.9.5",
"mock-browser": "^0.92.14",
"nock": "^9.0.22",
"node-fetch": "^1.7.3",
"nyc": "^11.2.1",
"service-worker-loader": "^0.5.0",
"service-worker-mock": "^1.7.1",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webworker-threads": "^0.7.13",
"worker-loader": "^1.1.0"
}
}