aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 5f1e3edd14341b1b569888c9c12584118136ef95 (plain) (blame)
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
{
  "name": "juick",
  "version": "1.0.0",
  "private": true,
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "compile:css": "postcss --verbose --map style.css.map src/main/assets/style.css -d src/main/resources/static/",
    "compile:js": "webpack",
    "compile": "cross-env NODE_ENV=production concurrently \"npm run compile:css\" \"npm run compile:js\""
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/juick/juick.git"
  },
  "license": "AGPL-3.0-or-later",
  "babel": {
    "presets": [
      [
        "@babel/preset-env",
        {
          "corejs": 3,
          "useBuiltIns": "entry",
          "modules": false,
          "exclude": [
            "es.symbol.*"
          ]
        }
      ]
    ]
  },
  "devDependencies": {
    "@babel/core": "^7.16.7",
    "@babel/preset-env": "^7.16.8",
    "babel-loader": "^8.2.3",
    "concurrently": "^7.0.0",
    "copy-webpack-plugin": "^10.2.0",
    "core-js": "^3.20.3",
    "cross-env": "^7.0.3",
    "cssnano": "^5.0.15",
    "eslint": "8.7.0",
    "eslint-plugin-only-ascii": "0.0.0",
    "eslint-webpack-plugin": "^3.1.1",
    "file-loader": "^6.2.0",
    "postcss": "^8.4.5",
    "postcss-cli": "^9.1.0",
    "postcss-import": "^14.0.2",
    "postcss-preset-env": "^7.2.3",
    "regenerator-runtime": "^0.13.9",
    "stylelint": "^14.2.0",
    "stylelint-config-standard": "^24.0.0",
    "webpack": "^5.66.0",
    "webpack-cli": "^4.9.1"
  },
  "dependencies": {
    "classlist.js": "^1.1.20150312",
    "element-closest": "3.0.2",
    "evil-icons": "^1.10.1",
    "formdata-polyfill": "^4.0.10",
    "svg4everybody": "^2.1.9",
    "url-polyfill": "^1.1.12",
    "whatwg-fetch": "^3.6.2"
  }
}