-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.83 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
{
"name": "@a2nt/mithril-ui",
"version": "1.2.7",
"description": "This UI Kit allows you to build Construct UI webapp.",
"author": "Tony Air <[email protected]>",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/a2nt/webpack-bootstrap-ui-kit.git"
},
"private": false,
"engines": {
"node": ">= 12",
"yarn": ">= 1.22.0"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.serve.js",
"dash": "cross-env NODE_ENV=development webpack-dashboard -- webpack-dev-server --config webpack.config.serve.js",
"build": "cross-env NODE_ENV=production webpack --progress --stats-all",
"lint:fix": "standard './src/**/*.js' --fix",
"lint:scss": "sass-lint ./src/**/*.scss -c sass-lint.yml -v",
"lint:check": "yarn lint:js && yarn lint:scss",
"prebuild": "yarn lint:fix && rimraf dist",
"prepare": "yarn build",
"preinstall": "npx only-allow pnpm",
"update": "npx msw init ./src/_graphql"
},
"resolutions": {
"colors": "1.4.0"
},
"directories": {
"assets": {
"css": [
"dist/css/app.css"
],
"js": [
"dist/js/app.js"
]
}
},
"main": "./dist/js/app.js",
"browser": {
"app": "./dist/js/app.js"
},
"module": "./src/js/app.js",
"browserslist": [
"defaults",
"ie>=11"
],
"dependencies": {
"@a2nt/meta-lightbox-js": "^4.2.8",
"@glidejs/glide": "^3.6.0",
"bootstrap": "^5.3.3",
"construct-ui": "^0.3.4",
"cross-fetch": "^4.0.0",
"feather-icons": "^4.29.1",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"material-design-color": "^2.3.2",
"mithril": "^2.2.2",
"mithril-graphql": "^1.0.0",
"youtube-embed": "^1.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-syntax-jsx": "^7.24.1",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/plugin-transform-typescript": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@sucrase/webpack-loader": "^2.0.0",
"ansi-html-community": "^0.0.8",
"classnames": "^2.5.1",
"css-minimizer-webpack-plugin": "^6.0.0",
"events": "^3.3.0",
"favicons-webpack-plugin": "^6.0.1",
"html-entities": "^2.5.2",
"html-webpack-plugin": "^5.6.0",
"lodash.debounce": "^4.0.8",
"mithril-transition-group": "^0.2.0",
"popper.js": "^1.16.1",
"rimraf": "^5.0.5",
"sass": "^1.75.0",
"sass-loader": "^14.2.1",
"simplestatemanager": "^4.1.1",
"tslib": "^2.6.2",
"webpack": "^5.91.0",
"webpack-build-notifications": "^0.3.2",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-manifest-plugin": "^5.0.0",
"webpack-merge": "^5.10.0",
"yarn": "^1.22.22"
},
"msw": {
"workerDirectory": "src/_graphql"
}
}