-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·56 lines (56 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
{
"name": "notificare-api-docs",
"version": "1.0.0",
"description": "OpenAPI / Swagger documentation of Notificare REST API",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.prod.js",
"deploy": "webpack --config webpack.config.deploy.js",
"lint:js": "./node_modules/.bin/eslint src/js/*.js",
"lint:styles": "stylelint \"src/**/*.scss\"",
"lint:html": "pa11y-ci ./src/**/*.html",
"start:dev": "webpack serve --config webpack.config.dev.js",
"start": "webpack --config webpack.config.prod.js && http-server ./dist -o"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Notificare/notificare-api-docs.git"
},
"author": "Joris Verbogt",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.20.1",
"file-loader": "^6.2.0",
"glob": "^11.0.1",
"html-webpack-plugin": "^5.6.3",
"http-server": "^14.1.1",
"mini-css-extract-plugin": "^2.9.2",
"postcss-loader": "^8.1.1",
"raw-loader": "^4.0.2",
"redoc": "^2.4.0",
"sass": "^1.85.0",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"stylelint": "^16.14.1",
"stylelint-config-standard": "^37.0.0",
"swagger-ui": "^5.18.3",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1",
"webpack-s3-plugin": "^1.2.0-rc.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}