-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
116 lines (116 loc) · 3.89 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@helsingborg-stad/styleguide",
"appname": "styleguide",
"version": "0.11.1206",
"description": "",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"prebuild": "node build/build.js assets & node build/build.js assetsMaterial",
"build": "webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch",
"sass": "node build/build.js assetsMaterial & sass --watch --style compressed source/sass/main.scss assets/dist/css/styleguide-css.min.css",
"lint": "stylelint \"./source/sass/**/*.scss\" --output-file stylelint.log && eslint -c .eslintrc.js source/js",
"lint-autofix": "stylelint \"./source/sass\" --fix && eslint -c .eslintrc.js source/js --fix",
"express-server": "node build/expressServer.js",
"phpcs-report": "php phpcs.phar source/library --standard=psr2",
"phpcs-fix": "php phpcbf.phar source/library --standard=psr2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helsingborg-stad/styleguide.git"
},
"files": [
"source/js/*",
"source/sass/*",
"build/*",
"assets/*",
"webpack.import.js",
"webpack.config.js",
"postcss.config.js",
"LICENSE",
".stylelintrc",
".stylelintignore"
],
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/helsingborg-stad/styleguide/issues"
},
"browserslist": [
"last 3 version",
"> 1%",
"not dead"
],
"homepage": "https://github.com/helsingborg-stad/styleguide#readme",
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.0",
"@babel/runtime-corejs3": "^7.17.2",
"@jest/globals": "^29.3.1",
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.0",
"@types/leaflet": "^1.9.3",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"babel-upgrade": "^1.0.1",
"body-parser": "^1.19.1",
"chalk": "^5.0.0",
"clientside-require": "^4.7.2",
"consola": "^2.15.3",
"cors": "^2.8.5",
"css-loader": "^6.6.0",
"cssnano": "^5.0.17",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"glob": "^7.2.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"material-design-icons-iconfont": "^6.1.1",
"mini-css-extract-plugin": "^2.6.0",
"postcss-loader": "^6.2.1",
"postcss-object-fit-images": "^1.1.2",
"prettier": "^2.5.1",
"sass": "^1.49.7",
"sass-loader": "^12.4.0",
"stylelint": "^14.4.0",
"stylelint-webpack-plugin": "^3.1.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.1",
"webpack-fix-style-only-entries": "^0.6.1",
"webpack-remove-empty-scripts": "^0.7.3",
"webpack-shell-plugin": "^0.5.0"
},
"dependencies": {
"@splidejs/splide": "^3.6.12",
"@types/leaflet.markercluster": "^1.5.1",
"hamburgers": "^1.1.3",
"leaflet": "^1.9.3",
"leaflet.markercluster": "^1.5.3",
"masonry-layout": "^4.2.2",
"material-symbols": "^0.16.0"
},
"browser": {
"child_process": false
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}