-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
61 lines (61 loc) · 1.72 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
{
"name": "simple-badges",
"version": "1.0.0",
"description": "Website for Simple Badges",
"private": "true",
"repository": {
"type": "git",
"url": "[email protected]:developStorm/simple-badges.git"
},
"author": "Simple Badges Collaborators",
"license": "CC0-1.0",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"build:watch": "npm run build:dev -- --watch",
"clean": "rm -rf _site tests/_artifacts",
"format": "prettier --write .",
"lint": "prettier --check .",
"serve": "serve -p 8080 ./_site",
"serve:watch": "run-p build:watch serve",
"setup:husky": "is-ci || husky install",
"test": "npm run test:unit",
"test:all": "cross-env TEST_ENV=all jest",
"test:e2e": "cross-env TEST_ENV=e2e jest",
"test:unit": "cross-env TEST_ENV=unit jest"
},
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/preset-env": "7.16.11",
"autoprefixer": "10.4.2",
"babel-jest": "27.5.1",
"copy-webpack-plugin": "10.2.4",
"cross-env": "7.0.3",
"css-loader": "6.7.0",
"css-minimizer-webpack-plugin": "3.4.1",
"get-relative-luminance": "1.0.0",
"html-webpack-plugin": "5.5.0",
"husky": "7.0.4",
"is-ci": "3.0.1",
"jest": "27.5.1",
"jest-puppeteer": "6.1.0",
"mini-css-extract-plugin": "2.6.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.31",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-loader": "6.2.1",
"prettier": "2.5.1",
"pug": "3.0.3",
"pug-loader": "2.4.0",
"puppeteer": "13.4.1",
"serve": "14.2.3",
"webpack": "5.70.0",
"webpack-cli": "4.9.2"
},
"engine": {
"node": ">=16.0.0"
},
"dependencies": {
"simple-icons": "13.15.0"
}
}