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
|
{
"name": "juick",
"version": "1.0.0",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "webpack --progress -p"
},
"repository": {
"type": "git",
"url": "https://github.com/juick/juick.git"
},
"license": "AGPL-3.0-or-later",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage"
}
]
]
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"eslint": "^5.12.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-only-ascii": "0.0.0",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"terser-webpack-plugin": "^1.2.1",
"url-loader": "^1.1.2",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"classlist.js": "^1.1.20150312",
"element-closest": "^3.0.0",
"evil-icons": "^1.10.1",
"formdata-polyfill": "^3.0.13",
"url-polyfill": "^1.1.3",
"whatwg-fetch": "^3.0.0"
}
}
|