-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.02 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.02 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
57
58
{
"name": "gd-sprest-bs",
"version": "10.15.57",
"description": "SharePoint JavaScript, TypeScript and Web Components designed using the Bootstrap framework.",
"main": "build/index.js",
"typings": "src/index.d.ts",
"scripts": {
"all": "npm run clean && npm run build && npm run prod && npm run typings",
"build": "tsc && npm run build-sass && webpack --mode=development && npm run build-icons",
"build-icons": "webpack --config webpack.icons.js --mode=development",
"build-sass": "webpack --config webpack.sass.js --mode=production",
"clean": "node ./clean.js && node ./customIcons.js",
"docs": "typedoc",
"package": "npm run all && npm run docs",
"prod": "webpack --mode=production && npm run prod-icons",
"prod-icons": "webpack --config webpack.icons.js --mode=production",
"typings": "dts-bundle --configJson dts-bundle.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gunjandatta/sprest-bs.git"
},
"keywords": [
"Bootstrap",
"SharePoint",
"SPFx",
"REST"
],
"author": "Gunjan Datta <me@dattabase.com> (https://dattabase.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gunjandatta/sprest-bs/issues"
},
"homepage": "https://dattabase.com/extras/bs",
"dependencies": {
"flatpickr": "^4.6.13",
"gd-bs": "^6.9.13",
"gd-sprest": "^9.6.9",
"gd-sprest-def": "^2.0.6",
"quill": "^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"babel-loader": "^8.4.1",
"css-loader": "^6.11.0",
"dts-bundle": "^0.7.3",
"html-loader": "^4.2.0",
"sass": "^1.89.2",
"sass-loader": "^13.3.3",
"style-loader": "^3.3.4",
"terser-webpack-plugin": "^5.3.14",
"typedoc": "^0.24.8",
"typescript": "^4.9.5",
"webpack": "^5.99.9",
"webpack-cli": "^5.1.4"
}
}