This repository has been archived by the owner on Dec 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
69 lines (69 loc) · 2.36 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
{
"name": "shadowban-eu-frontend",
"version": "3.2.0",
"description": "Frontend for https://shadowban.eu",
"author": "Raphael Beer <raphael.beer@protonmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/shadowban-eu/shadowban-eu-frontend.git"
},
"license": "GPL-3.0-only",
"private": true,
"scripts": {
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development webpack-dev-server",
"build:dev": "cross-env NODE_ENV=development webpack",
"build": "cross-env NODE_ENV=production webpack",
"lint": "eslint -c ./.eslintrc ./src/js/**",
"pre-commit": "npm run lint",
"deploy:dev": "ansible-playbook ansible/deploy_naughty.yml"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"ajv": "^6.10.2",
"autoprefixer": "^9.6.1",
"babel-eslint": "^8.2.3",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^5.2.0",
"css-loader": "^3.1.0",
"cssnano": "^4.1.10",
"dotenv": "^6.0.0",
"dotenv-expand": "^5.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"file-loader": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"i18next": "^17.0.12",
"i18next-browser-languagedetector": "^3.0.3",
"i18next-chained-backend": "^2.0.0",
"i18next-localstorage-backend": "^3.0.0",
"i18next-versioning-webpack-plugin": "git+https://github.com/rbeer/i18next-versioning-webpack-plugin.git",
"i18next-xhr-backend": "^3.1.2",
"imagemin-webpack-plugin": "^2.4.2",
"lodash": "^4.5.1",
"materialize-css": "^1.0.0-rc.2",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"sass-lint": "^1.13.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.4.1",
"url-loader": "^2.1.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
}
}