-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.2 KB
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
{
"name": "auth-server-core",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"description": "Nette Web Project =================",
"directories": {
"test": "tests"
},
"dependencies": {
"@babel/runtime": "^7.28.3",
"@babel/runtime-corejs3": "^7.28.3",
"@popperjs/core": "^2.11.8",
"@sentry/browser": "^10.25.0",
"@simplewebauthn/browser": "^13.1.0",
"bootstrap": "^5.3.3",
"crypto-js": "^4.2.0",
"naja": "^3.0.0",
"nette-forms": "^3.3.5",
"webpack-manifest-plugin": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/plugin-transform-async-to-generator": "^7.27.1",
"@babel/plugin-transform-class-properties": "^7.27.1",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.27.1",
"@babel/plugin-transform-object-rest-spread": "^7.28.0",
"@babel/plugin-transform-optional-chaining": "^7.27.1",
"@babel/plugin-transform-regenerator": "^7.28.3",
"@babel/plugin-transform-runtime": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"autoprefixer": "^10.4.17",
"babel-loader": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.45.1",
"css-loader": "^6.10.0",
"dotenv-webpack": "^8.1.1",
"html-webpack-inject-attributes-plugin": "^1.0.6",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.8.0",
"postcss-loader": "^8.1.0",
"postcss-preset-env": "^10.3.1",
"progress-bar-webpack-plugin": "^2.1.0",
"regenerator-runtime": "^0.14.1",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"string-replace-loader": "^3.2.0",
"style-loader": "^3.3.4",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"scripts": {
"dev": "npm install && chmod +x node_modules/.bin/* && webpack --watch --config webpack.config.js --mode development",
"build": "npm install && chmod +x node_modules/.bin/* && webpack --config webpack.config.js --mode production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"browserslist": [
"defaults",
"ie >= 9",
"Edge >= 18",
"last 2 versions",
"> 1%",
"last 3 iOS versions"
]
}