-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.6 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
{
"name": "cul-toolkit",
"version": "3.1.3",
"description": "Shared styles, JavaScript, and assets for CUL sites.",
"private": true,
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack-dev-server --open"
},
"keywords": [],
"author": {
"name": "Eric O'Hanlon",
"email": "[email protected]"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/cul/cul-toolkit.git"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.6.0",
"sass": "^1.76.0",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"bootstrap": "^4.6.0",
"jquery": "^3.6.0",
"popper.js": "^1.16.1",
"tar": ">=5.0.10"
},
"comments": {
"tar": "There was a vulnerability in the tar package which was fixed in tar >=4.4.2, so we're forcing yarn to resolve this dependency. The resolutions key is a yarn-specific feature.",
"fstream": "There was a vulnerability in the fstream package which was fixed in fstream >=1.0.12, so we're forcing yarn to resolve this dependency. The resolutions key is a yarn-specific feature."
},
"resolutions": {
"tar": ">=4.4.8",
"fstream": ">=1.0.12"
}
}