-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
70 lines (70 loc) · 2.22 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
{
"name": "studip-plugin-cliqr",
"version": "5.4.0",
"private": true,
"description": "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
"scripts": {
"build-dev": "webpack --config webpack.dev.js --mode development",
"build-prod": "webpack --config webpack.prod.js --mode production",
"watch": "webpack --config webpack.dev.js --mode development --watch",
"zip": "zip -r cliqr.zip app dist CliqrPlugin.php config.php lib LICENSE migrations plugin.manifest README.md screenshots vendor -x '*/.git/*'"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.9.0",
"autoprefixer": "9.7.5",
"babel-loader": "8.1.0",
"backbone": "1.3.3",
"backbone.marionette": "4.1.3",
"browserslist": "4.11.1",
"copy-webpack-plugin": "5.1.1",
"core-js": "3.6.4",
"css-loader": "3.4.2",
"d3-array": "2.0.3",
"d3-axis": "1.0.12",
"d3-scale": "2.1.2",
"d3-selection": "1.4.0",
"file-loader": "6.0.0",
"git-revision-webpack-plugin": "3.0.4",
"handlebars": "^4.7.3",
"handlebars-template-loader": "1.0.0",
"mini-css-extract-plugin": "0.9.0",
"postcss-loader": "3.0.0",
"sass": "^1.53.0",
"sass-loader": "^10.3.1",
"style-loader": "1.1.3",
"timeago.js": "3.0.2",
"uglifyjs-webpack-plugin": "2.2.0",
"webpack": "4.42.1",
"webpack-cli": "3.3.11"
},
"browserslist": [
"last 2 versions",
"android>=4.4",
"safari>=9"
],
"eslintConfig": {
"env": {
"browser": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
},
"prettier": {
"semi": false,
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"indentation": 4,
"property-no-vendor-prefix": true
}
}
}