forked from metabrainz/listenbrainz-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.19 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.19 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
{
"name": "listenbrainz",
"version": "1.0.0",
"description": "package.json for keeping track of node dependencies for ListenBrainz",
"repository": {
"type": "git",
"url": "git+https://github.com/metabrainz/listenbrainz-server.git"
},
"scripts": {
"build:dev": "webpack --progress --colors",
"build:prod": "webpack -p --env production --progress --colors",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run build:dev",
"postinstall": "npm run build:prod",
"format": "eslint ./static/js/src --ignore-path .gitignore --ext .js,jsx,ts,tsx --fix --quiet",
"format:ci": "eslint ./static/js/src --ignore-path .gitignore --ext .js,jsx,ts,tsx",
"test": "jest",
"test:watch": "jest --watch",
"test:update-snapshots": "jest -u",
"test:coverage": "jest --coverage --colors",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"author": "MetaBrainz Foundation Inc.",
"license": "GPL-2.0-only",
"bugs": {
"url": "https://tickets.metabrainz.org/projects/LB"
},
"homepage": "https://listenbrainz.org",
"dependencies": {
"@babel/runtime": "^7.5.5",
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-regular-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"clean-css": "^4.2.1",
"eslint-plugin-jest": "^23.8.2",
"less": "^2.7.2",
"less-plugin-clean-css": "^1.5.1",
"lodash": "^4.17.13",
"react": "^16.7.0",
"react-bs-notifier": "^5.0.0",
"react-dom": "^16.7.0",
"socket.io-client": "^2.2.0",
"time-ago": "^0.2.1"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.9.0",
"@fortawesome/fontawesome-common-types": "^0.2.28",
"@types/clean-css": "^4.2.1",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.2.1",
"@types/less": "^3.0.1",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.31",
"@types/react-dom": "^16.9.6",
"@types/spotify-web-playback-sdk": "^0.1.7",
"@types/socket.io-client": "^1.4.32",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"jest": "^25.1.0",
"prettier": "^2.0.2",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.10",
"webpack-manifest-plugin": "^2.2.0"
}
}