-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.4 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "Torchbox",
"version": "0.0.0",
"author": "Torchbox Ltd",
"private": true,
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": ""
},
"browserslist": [
"> 1% and last 2 versions",
"Firefox ESR",
"ios_saf 12",
"safari 12",
"ie 11",
"not ie_mob 11",
"not android 4.4.3-4.4.4",
"not OperaMini all"
],
"scripts": {
"//[ Linting & formatting ]//": "",
"lint:css": "stylelint --report-needless-disables './tbx/static_src/sass' './tbx/static_src/javascript/'",
"lint:js": "eslint --ext .js,.ts,.tsx --report-unused-disable-directives .",
"lint:format": "prettier --check '**/?(.)*.{md,css,scss,js,ts,tsx,json,yaml,yml,vue}'",
"lint": "npm run lint:format && npm run lint:js && npm run lint:css",
"format": "prettier --write '**/?(.)*.{md,css,scss,js,ts,tsx,json,yaml,yml,vue}'",
"//[ Tests ]//": "",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"//[ Build tasks ]//": "",
"build": "webpack --mode development --progress",
"build:prod": "webpack --mode production",
"start": "webpack --mode development --progress --watch",
"start:reload": "webpack-dev-server",
"pa11y": "pa11y-ci --sitemap http://localhost:8000/sitemap.xml --config ./pa11y.config.js || (echo 'Please install pa11y-ci globally using: npm install -g pa11y-ci' && exit 1)"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"autoprefixer": "^10.4.16",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"cssnano": "^6.0.1",
"eslint": "^8.51.0",
"eslint-config-torchbox": "^1.1.0",
"eslint-webpack-plugin": "^4.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.31",
"postcss-custom-properties": "^13.3.2",
"postcss-loader": "^7.3.3",
"prettier": "^2.3.2",
"sass": "^1.24.4",
"sass-loader": "^8.0.2",
"stylelint": "^13.13.1",
"stylelint-config-torchbox": "^1.1.0",
"stylelint-webpack-plugin": "^2.2.2",
"tailwindcss": "^3.1.3",
"ts-jest": "^29.1.1",
"ts-loader": "^8.3.0",
"typescript": "^4.6.2",
"url-loader": "^3.0.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"js-cookie": "^3.0.5",
"lite-youtube-embed": "^0.3.2"
}
}