-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.73 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
{
"name": "ds-wagtail",
"description": "## Local development",
"private": true,
"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",
"lint": "prettier --check '{scripts,sass}/**/*.{scss,js}' && stylelint 'sass/**/*.scss' && eslint 'scripts/**/*.js'",
"lint:fix": "prettier --write '{scripts,sass}/**/*.{scss,js}' && stylelint --fix 'sass/**/*.scss' && eslint --fix 'scripts/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nationalarchives/ds-wagtail.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nationalarchives/ds-wagtail/issues"
},
"homepage": "https://github.com/nationalarchives/ds-wagtail#readme",
"devDependencies": {
"@babel/core": "~7.24",
"@babel/preset-env": "~7.24",
"babel-loader": "~9.1",
"jest": "~29.7",
"jest-environment-jsdom": "~29.7",
"prettier": "~3.2",
"sass": "~1.76",
"stylelint": "~16.5",
"stylelint-config-standard-scss": "~13.1",
"stylelint-selector-bem-pattern": "~4.0",
"webpack": "~5.94",
"webpack-cli": "~5.1"
},
"dependencies": {
"@nationalarchives/frontend": "0.1.50",
"jquery": "~3.7",
"openseadragon": "~4.1"
},
"jest": {
"testEnvironment": "jest-environment-jsdom"
}
}