-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "h5p-boilerplate-snordian",
"version": "1.0.0",
"description": "Boilerplate for plain H5P content types (SNORDIAN style)",
"private": true,
"scripts": {
"lint": "stylelint './src/**/*.scss' && eslint './src/**/*.js'",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otacke/h5p-boilerplate-snordian.git"
},
"keywords": [
"h5p",
"library"
],
"author": "Oliver Tacke",
"license": "MIT",
"type": "module",
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"eslint-config-snordian-h5p": "github:otacke/eslint-config-snordian-h5p",
"mini-css-extract-plugin": "^2.9.1",
"regenerator-runtime": "^0.14.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.80.2",
"sass-loader": "^16.0.2",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-recommended-scss": "^14.1.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"he": "^1.2.0"
},
"browserslist": "> 0.5%, last 3 versions, Firefox ESR, not dead"
}