-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.01 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.01 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "jschol-app",
"version": "0.1.0",
"type": "module",
"browserslist": [
"last 2 versions"
],
"description": "The fifth generation of the eScholarship front-end user interface.",
"main": "index.html",
"repository": "https://github.com/eScholarship/jschol",
"scripts": {
"test": "mocha",
"clean": "rm -rf app/js/*bundle* app/js/assets/ app/css/*.css app/css/*.map app/js/manifest.json",
"dev": "npm run clean && concurrently -k -n \"socks,client,puma\" -c \"cyan,blue,green\" \"ruby util/maybeSocks.rb\" \"npm run build:dev:watch\" \"sleep 5 && bundle exec puma\"",
"build:dev": "vite build --mode development",
"build:dev:ssr": "vite build --ssr --mode development",
"build:dev:all": "npm run build:dev && npm run build:dev:ssr",
"build:dev:watch": "vite build --mode development --watch",
"build:dev:ssr:watch": "vite build --ssr --mode development --watch",
"build:prod": "vite build --mode production",
"build:prod:ssr": "vite build --ssr --mode production",
"build:prod:all": "npm run build:prod && npm run build:prod:ssr"
},
"author": "California Digital Library",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-inject": "^5.0.5",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.17",
"backstopjs": "^6.3.3",
"chai": "^3.5.0",
"concurrently": "^8.2.2",
"enzyme": "^3.11.0",
"eslint": "7.32.0",
"eslint-plugin-react": "^7.29.4",
"history": "^2.1.2",
"jsdom": "^16.5.0",
"klaro": "^0.7.21",
"mocha": "^10.3.0",
"postcss": "^8.4.35",
"postcss-assets": "^5.0.0",
"progress": "^1.1.8",
"sass": "^1.70.0",
"use-resize-observer": "^9.1.0",
"vite": "^6.4.1"
},
"dependencies-note": "These modules get bundled into lib-bundle.js",
"dependencies-note2": "The query-string module must be 5.x only; 6.x does not support IE11",
"dependencies": {
"@moebius/http-graceful-shutdown": "^1.1.0",
"array-includes": "^3.1.5",
"better-react-mathjax": "^2.0.1",
"body-parser": "^1.20.0",
"core-js": "^2.5.7",
"decache": "^4.6.1",
"details-polyfill": "^1.2.0",
"downloadjs": "^1.4.7",
"express": "^4.18.1",
"flickity": "^2.3.0",
"flickity-imagesloaded": "^2.0.0",
"get-form-data": "^2.0.0",
"intersection-observer": "^0.4.3",
"jquery": "^3.6.0",
"jquery.dotdotdot": "github:amywieliczka/jQuery.dotdotdot#4f7d03a442ceca0b75a2fb641a065e47297d5666",
"lodash": "^4.17.21",
"lozad": "^1.16.0",
"npm": "^10.8.1",
"prop-types": "^15.8.1",
"query-string": "^5.x",
"react": "^16.14.0",
"react-datetime": "^3.1.1",
"react-dom": "^16.14.0",
"react-flickity-component": "^3.6.3",
"react-ga": "^2.7.0",
"react-meta-tags": "^0.7.4",
"react-modal": "^3.15.1",
"react-pdf": "^8.0.2",
"react-router-dom": "^4.3.1",
"react-select": "^5.5.5",
"react-sidebar": "^2.3.0",
"react-sortable-tree": "^2.8.0",
"react-twitter-widgets": "^1.10.0",
"smoothscroll-polyfill": "^0.4.4",
"trumbowyg": "^2.25.1"
}
}