-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
29 lines (29 loc) · 969 Bytes
/
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
{
"scripts": {
"compile:css": "sass --quiet-deps --load-path=node_modules sass/etna.scss:templates/static/css/dist/etna.css",
"compile:js": "webpack --config webpack.config.js --mode=production",
"compile": "npm run compile:css && npm run compile:js",
"dev:css": "sass --load-path=node_modules --watch sass/etna.scss:templates/static/css/dist/etna.css",
"dev:js": "webpack --config webpack.config.js --mode=development --watch",
"dev": "npm run dev:css & npm run dev:js",
"test": "jest --coverage"
},
"devDependencies": {
"@babel/core": "~7.24",
"@babel/preset-env": "~7.24",
"babel-loader": "~9.1",
"jest": "~29.7",
"jest-environment-jsdom": "~29.7",
"sass": "^1.80.6",
"webpack": "~5.94",
"webpack-cli": "~5.1"
},
"dependencies": {
"@nationalarchives/frontend": "0.2.18",
"jquery": "~3.7",
"openseadragon": "~4.1"
},
"jest": {
"testEnvironment": "jest-environment-jsdom"
}
}