-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 2.14 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
{
"name": "aic",
"version": "0.2.2",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development run-p svg-sprite webpack:watch",
"build": "cross-env NODE_ENV=production run-p svg-sprite webpack:build",
"build:dev": "cross-env NODE_ENV=development run-p svg-sprite webpack:build",
"production": "npm run build",
"presvg-sprite": "mkdirp ./public/dist/icons && rm -f ./public/dist/icons/icons*",
"svg-sprite": "svg-symbol-sprite -i ./frontend/icons -o ./public/dist/icons/icons.svg -p icon-- -c false",
"postsvg-sprite": "node ./scripts/hashFiles.js ./public/dist/icons/icons.svg && node ./scripts/generateRevManifest ./public/dist ./public/dist/rev-manifest.json",
"webpack:build": "webpack",
"webpack:watch": "webpack --watch",
"webpack:generate-stats": "cross-env NODE_ENV=production webpack --profile --json > bundle-stats.json",
"webpack:analyze": "webpack-bundle-analyzer bundle-stats.json"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"dotenv": "^16.4.5",
"mini-css-extract-plugin": "^2.9.1",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"sass-loader": "^16.0.2",
"svg-symbol-sprite": "^1.5.2",
"webpack": "^5.93.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@area17/a17-helpers": "^0.6.7",
"@sentry/react": "^8.26.0",
"@sketchfab/viewer-api": "^1.12.1",
"closer-look": "git+ssh://[email protected]/art-institute-of-chicago/digital-labels-ui.git#node-20",
"fitty": "^2.4.2",
"gl-vec3": "^1.1.3",
"lodash": "^4.17.21",
"mirador": "^3.0.0",
"my-museum-tour-builder": "github:art-institute-of-chicago/my-museum-tour#semver:^1.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"text-contrast": "^1.0.2",
"video.js": "^8.17.2",
"videojs-event-tracking": "^1.0.3"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}