-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 847 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 847 Bytes
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
{
"name": "libcal-assets",
"description": "Custom JS/CSS for NYU LibCal",
"scripts": {
"build": "webpack",
"build:dev:watch": "NODE_ENV=${NODE_ENV:-development} yarn run build --mode=development --watch --progress",
"build:dev": "NODE_ENV=${NODE_ENV:-development} yarn run build --mode=development",
"build:prod": "NODE_ENV=${NODE_ENV:-production} yarn run build --mode=production"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"babel-loader": "^9.1.3",
"core-js": "^3.36.0",
"css-loader": "^6.10.0",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"webpack": "^5.104.1",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": "20.x"
}
}