-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.8 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.8 KB
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
{
"name": "@oddhill/oddbaby",
"version": "1.0.0",
"description": "A starter theme for Drupal 8+.",
"main": "src/main.js",
"repository": "https://www.github.com/oddhill/drupal-oddbaby",
"author": "Christoffer Palm <christoffer.palm@oddhill.se>",
"license": "MIT",
"engines": {
"node": "22.*"
},
"scripts": {
"start": "NODE_ENV=development webpack",
"build": "NODE_ENV=production webpack",
"eslint": "eslint ./src",
"eslint-ci": "eslint ./src --format junit -o ./reports/eslint.xml",
"stylelint": "stylelint ./src/scss/**/*.scss",
"stylelint-ci": "stylelint ./src/scss/**/*.scss --custom-formatter=./node_modules/stylelint-junit-formatter > ./reports/stylelint.xml"
},
"browserslist": "defaults",
"dependencies": {
"bootstrap": "^5.1.0",
"core-js": "^3.2.1",
"normalize.css": "^8.0.0",
"regenerator-runtime": "^0.13.3"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-typescript": "^7.21.4",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.0.0",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"eslint": "^8.38.0",
"eslint-plugin-import": "^2.0.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.2.0",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"prettier": "^2.3.2",
"sass": "^1.37.5",
"sass-loader": "^12.1.0",
"stylelint": "^13.13.1",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-junit-formatter": "^0.2.1",
"terser-webpack-plugin": "^5.1.4",
"typescript": "^5.0.4",
"webpack": "^5.50.0",
"webpack-cli": "^4.7.2",
"webpack-merge": "^5.8.0",
"webpack-remove-empty-scripts": "^1.0.3"
}
}