forked from metabrainz/acousticbrainz-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.39 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
{
"name": "acousticbrainz-server",
"version": "0.0.0",
"description": "package.json for keeping track of nodejs dependencies for acousticbrainz-server",
"repository": {
"type": "git",
"url": "https://github.com/metabrainz/acousticbrainz-server.git"
},
"scripts": {
"build:dev": "webpack",
"build:watch": "webpack --watch",
"build:prod": "webpack -p --env production",
"format": "eslint ./webserver/static/scripts --ignore-path .gitignore --ext .js,.jsx --fix --quiet",
"format:ci": "eslint ./webserver/static/scripts --ignore-path .gitignore --ext .js,.jsx"
},
"dependencies": {
"bootstrap": "3.4.1",
"css-loader": "^3.5.2",
"core-js": "^3.9.1",
"highcharts": "^8.0.4",
"jquery": "^3.5.1",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.9.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"style-loader": "^1.1.4",
"terser": "^4.6.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.9.0",
"@types/jquery": "^3.5.6",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"fork-ts-checker-webpack-plugin": "^6.3.1",
"less-plugin-clean-css": "^1.5.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^2.3.2",
"terser-webpack-plugin": "^2.3.6",
"typescript": "^4.3.5",
"webpack-manifest-plugin": "^3.1.1"
},
"private": true
}