-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 2.04 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
{
"name": "fluent-web-framework",
"description": "Framework for using Windows 11 Fluent design on the web.",
"author": {
"name": "BeXCool",
"email": "info@bexcool.com",
"url": "https://bexcool.com"
},
"license": "Apache-2.0",
"version": "1.0.1",
"type": "module",
"bugs": {
"url": "https://github.com/bexcool/Fluent-Web-Framework/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bexcool/Fluent-Web-Framework.git"
},
"homepage": "https://github.com/bexcool/Fluent-Web-Framework#readme",
"keywords": [
"windows",
"fluent",
"css",
"design",
"web"
],
"scripts": {
"build": "node prebuild.mjs && webpack && node postbuild.mjs",
"dev": "node prebuild.mjs && webpack serve --env dev",
"lint": "eslint && ejslint ./docs/index.ejs"
},
"dependencies": {
"@fluentui/svg-icons": "^1.1.214",
"brotli-dec-wasm": "^1.3.3",
"core-js": "^3.32.2",
"ejs-lint": "^2.0.0",
"js-untar": "^2.0.0",
"prismjs": "^1.29.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@babel/core": "^7.22.17",
"@babel/preset-env": "^7.22.15",
"@types/prismjs": "^1.26.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-loader": "^9.1.3",
"babel-plugin-prismjs": "^2.1.0",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"ejs": "^3.1.9",
"eslint": "^8.49.0",
"glob": "^9.3.5",
"html-add-asset-webpack-plugin": "^0.1.5",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"ignore-loader": "^0.1.2",
"mini-css-extract-plugin": "^2.7.6",
"prepend-file": "^2.0.1",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"svg-inline-loader": "^0.8.2",
"tar": "^6.2.0",
"template-ejs-loader": "^0.9.4",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}