-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.62 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
75
76
77
78
79
{
"name": "umn-primo-ve",
"type": "module",
"description": "UMN Libraries Primo VE Customization Packages",
"author": "Jeff Peterson <gpeterso@umn.edu>",
"private": true,
"scripts": {
"start": "webpack serve --config webpack/webpack.dev.js",
"test": "npm run test:types && npm run test:unit",
"build": "webpack --config webpack/webpack.prod.js",
"test:unit": "karma start karma.conf.cjs",
"cy:run": "cypress run --config-file cypress/cypress.config.ts",
"cy:open": "cypress open --e2e --config-file cypress/cypress.config.ts",
"test:e2e": "start-server-and-test start http-get://localhost:8080 cy:run",
"test:types": "tsc --noEmit",
"color-theme": "cd src/shared/color-theme && primo-color-theme -s umn.primo.exlibrisgroup.com -f colors.json > generated-theme.css",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/angular": "^1.8.4",
"@types/angular-cookies": "^1.8.1",
"@types/angular-material": "^1.1.73",
"@types/angular-mocks": "^1.7.1",
"@types/angular-translate": "^2.19.0",
"@types/jasmine": "^4.3.1",
"@types/lodash": "^4.14.191",
"@umn-libraries/primo-color-theme": "^1.0.0",
"angular": "^1.8.3",
"angular-animate": "^1.8.3",
"angular-aria": "^1.8.3",
"angular-cookies": "^1.8.3",
"angular-material": "^1.2.5",
"angular-mocks": "^1.8.3",
"angular-translate": "^2.19.0",
"angular-ui-router": "^0.3.2",
"babel-loader": "^9.1.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"cypress": "^12.1.0",
"html-loader": "^4.1.0",
"husky": "^8.0.2",
"jasmine-core": "^4.5.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-jasmine": "^5.1.0",
"karma-spec-reporter": "^0.0.34",
"karma-webpack": "^5.0.0",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.17",
"postcss-loader": "^7.0.1",
"postcss-preset-env": "^7.8.3",
"prettier": "2.8.0",
"puppeteer": "^19.2.2",
"sass": "^1.54.5",
"sass-loader": "^13.0.2",
"start-server-and-test": "^1.15.2",
"typescript": "^4.9.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-merge": "^5.8.0",
"zip-webpack-plugin": "^4.0.1"
},
"dependencies": {
"primo-explore-hathitrust-availability": "^2.7.2"
},
"volta": {
"node": "18.16.0"
}
}