-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 2.28 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
{
"name": "uconn-banner",
"version": "3.0.3",
"description": "uconn-banner is the official UConn Banner module packaged for quick implementation.",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/uconn/banner.git"
},
"keywords": [
"uconn",
"banner"
],
"bugs": {
"url": "https://github.com/uconn/banner/issues"
},
"scripts": {
"banner:basic": "php ./src/Banner/Generator.php -p ./_includes/basic.html -m=true -v=false -r=true",
"banner:sc-basic": "php ./src/Banner/Generator.php -p ./_includes/sc_basic.html -v true -s \"University Communications\" -a \"UComm\" -u https://communications.uconn.edu -v=false -r=true -m=true",
"banner:sc-advanced": "php ./src/Banner/Generator.php -p ./_includes/sc_advanced.html -v true -s \"University Communications\" -a \"UComm\" -u https://communications.uconn.edu -m=true --a-z-dropdown=true -r=true",
"banners": "npm run banner:basic && npm run banner:sc-basic && npm run banner:sc-advanced",
"build": "npm run banners && npm run 11ty && npm run webpack",
"develop": "npm run dev",
"watch": "npm run develop",
"start": "npm run build",
"11ty:dev": "ENVIRONMENT=development npx @11ty/eleventy --serve",
"11ty": "ENVIRONMENT=production npx @11ty/eleventy",
"webpack:dev": "ENVIRONMENT=development webpack --watch",
"webpack": "ENVIRONMENT=production webpack",
"dev": "npm run banners && npm-run-all --parallel *:dev",
"playwright": "npx playwright test",
"playwright:ui": "npx playwright test --ui",
"pest": "vendor/bin/pest"
},
"contributors": [
{
"name": "Brian Daley"
},
{
"name": "Brian Kelleher"
},
{
"name": "Adam Berkowitz"
}
],
"directories": {},
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@playwright/test": "^1.40.1",
"@types/node": "^20.10.8",
"babel-loader": "^9.1.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.2",
"css-minimizer-webpack-plugin": "^4.2.2",
"mini-css-extract-plugin": "^2.6.1",
"npm-run-all": "^4.1.5",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
}
}