This repository was archived by the owner on Feb 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.88 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.88 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "ual-libcal",
"version": "1.0.0",
"description": "The University of Arizona Libraries LibCal customizations",
"main": "dist/bundle.js",
"scripts": {
"build:dev": "webpack -w --verbose",
"build:prod": "webpack -p",
"serve": "node ./static-server.js",
"lint": "standard && stylelint \"app/**/*.css\"",
"test": "mocha app/**/*.test.js --timeout=50000 --exit",
"deploy": "aws s3 sync build s3://ualibr-libcal-assets --delete"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"braces": "^2.3.2",
"chai": "^4.2.0",
"css-loader": "^3.4.1",
"eslint": "^4.19.1",
"file-loader": "^1.0",
"handlebars": "^4.5.3",
"html-loader": "^0.4.5",
"lodash": "^4.17.15",
"lodash.template": "^4.5.0",
"mem": "^4.3.0",
"mocha": "^5.2.0",
"postcss-cssnext": "^2.11.0",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.1.6",
"postcss-reporter": "^4.0.0",
"raw-loader": "^0.5.1",
"request-promise-native": "^1.0.8",
"standard": "^10.0.3",
"style-loader": "^0.18.2",
"stylelint": "^9.10.1",
"tachyons": "^4.11.1",
"url-loader": "^1.1.2",
"webpack": "^4.41.5"
},
"devDependencies": {
"browser-env": "^3.3.0",
"jsdom": "^11.12.0",
"localtunnel": "^1.9.2",
"moment": "^2.24.0",
"node-static": "^0.7.11",
"webpack-cli": "^3.3.10",
"winston": "^2.4.4",
"yargs": "^8.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ualibraries/ual-libcal.git"
},
"author": "Christopher Green",
"license": "MIT",
"bugs": {
"url": "https://github.com/ualibraries/ual-libcal/issues"
},
"homepage": "https://github.com/ualibraries/ual-libcal#readme",
"engines": {
"node": "v6.11.0"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}