-
Notifications
You must be signed in to change notification settings - Fork 206
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "bundler-site",
"version": "1.0.0",
"description": "bundler.io is intended to serve as a convenient source for documentation on the [bundler](https://github.com/rubygems/rubygems) gem.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"private": true,
"scripts": {
"build": "npx webpack --bail --mode production",
"lint": "prettier --check assets/javascripts",
"start": "npx webpack -d source-map --progress --color",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rubygems/bundler-site.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rubygems/bundler-site/issues"
},
"homepage": "https://github.com/rubygems/bundler-site#readme",
"devDependencies": {
"css-loader": "^7.1.2",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "3.3.3",
"sass": "^1.79.5",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"anchor-js": "^5.0.0",
"bootstrap": "^5.1.3",
"lunr": "^0.7.0"
}
}