-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
83 lines (83 loc) · 2.95 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "metabrainz.org",
"version": "0.0.0",
"description": "package.json for keeping track of nodejs dependencies for MetaBrainz website",
"author": "MetaBrainz Foundation Inc.",
"license": "GPL-2.0-only",
"repository": {
"type": "git",
"url": "https://github.com/metabrainz/metabrainz.org.git"
},
"bugs": {
"url": "https://tickets.metabrainz.org/projects/MeB"
},
"homepage": "https://metabrainz.org",
"scripts": {
"build:dev": "webpack --mode=development --watch --progress --color",
"build:prod": "webpack --mode=production --no-watch --color",
"build:less": "lessc ./frontend/css/main.less > ./frontend/css/main.css",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run build:dev",
"lint:js": "eslint ./frontend/js/src --ext .js,.jsx,.ts,.tsx --fix --quiet",
"lint:less": "stylelint --fix './frontend/css/*.less'",
"lint:js:ci": "eslint ./frontend/js/src --ext .js,.jsx,.ts,.tsx --max-warnings 0 --color",
"lint:less:ci": "stylelint './frontend/css/*.less'",
"format": "npm run lint:js; npm run lint:less",
"format:ci": "npm run lint:js:ci; npm run lint:less:ci",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@babel/runtime": "^7.20.6",
"core-js": "^3.26.1",
"formik": "^2.4.5",
"less": "^4.1.1",
"less-plugin-clean-css": "^1.5.1",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-recaptcha": "^3.1.0",
"yup": "^1.3.2"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/clean-css": "^4.2.6",
"@types/less": "^3.0.3",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/react-google-recaptcha": "^2.1.6",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"babel-loader": "^9.1.0",
"clean-css": "^5.3.1",
"decode-uri-component": "^0.4.1",
"eslint": "^8.25.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.31.9",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"less-loader": "^11.1.0",
"network-information-types": "^0.1.1",
"postcss-less": "^6.0.0",
"prettier": "^2.0.2",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended-less": "^1.0.4",
"stylelint-prettier": "^2.0.0",
"stylelint-webpack-plugin": "^3.3.0",
"typescript": "^4.9.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.1",
"webpack-manifest-plugin": "^5.0.0"
},
"private": true
}