-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
77 lines (77 loc) · 2.43 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
75
76
77
{
"name": "simple-icons-website",
"version": "1.0.0",
"description": "Website for Simple Icons",
"private": "true",
"repository": {
"type": "git",
"url": "[email protected]:simple-icons/simple-icons-website.git"
},
"bugs": {
"url": "https://github.com/simple-icons/simple-icons-website/issues"
},
"author": "Simple Icons Collaborators",
"license": "CC0-1.0",
"type": "module",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"build:watch": "npm run build:dev -- --watch",
"clean": "del-cli _site tests/_artifacts",
"prettierlint": "prettier --ignore-unknown \"**/*.!(js|jsx|mjs|cjs|ts|tsx|mts|cts)\"",
"jslint": "xo",
"xo:fix": "xo --fix",
"format": "npm run prettierlint -- --write . && npm run xo:fix",
"lint": "npm run prettierlint -- --check . && npm run jslint",
"postinstall": "is-ci || husky install",
"serve": "serve -p 8080 ./_site",
"serve:watch": "run-p build:watch serve",
"test": "npm run test:unit",
"test:all": "cross-env NODE_OPTIONS=--experimental-vm-modules TEST_ENV=all jest --detectOpenHandles",
"test:e2e": "cross-env NODE_OPTIONS=--experimental-vm-modules TEST_ENV=e2e jest --detectOpenHandles",
"test:unit": "cross-env NODE_OPTIONS=--experimental-vm-modules TEST_ENV=unit jest",
"locale": "node scripts/i18n.js"
},
"dependencies": {
"blob-stream": "0.1.3",
"fast-fuzzy": "1.12.0",
"pdfkit": "0.14.0"
},
"devDependencies": {
"@prettier/plugin-pug": "3.0.0",
"@prettier/plugin-xml": "3.2.2",
"autoprefixer": "10.4.16",
"copy-webpack-plugin": "11.0.0",
"cross-env": "7.0.3",
"css-loader": "6.8.1",
"css-minimizer-webpack-plugin": "5.0.1",
"del-cli": "5.1.0",
"eslint-plugin-import": "2.29.1",
"get-relative-luminance": "1.0.0",
"html-webpack-plugin": "5.6.0",
"husky": "8.0.3",
"is-ci": "3.0.1",
"jest": "29.7.0",
"jest-puppeteer": "9.0.2",
"mini-css-extract-plugin": "2.7.6",
"npm-run-all": "4.1.5",
"pofile": "1.1.4",
"postcss": "8.4.28",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-loader": "7.3.3",
"pug": "2.0.4",
"pug-lexer": "5.0.1",
"pug-loader": "2.4.0",
"puppeteer": "21.6.1",
"serve": "14.2.1",
"simple-icons": "13.16.0",
"svgo": "3.1.0",
"webpack": "5.89.0",
"webpack-cli": "5.1.4",
"xo": "0.58.0"
}
}