forked from timmson/java-interview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"name": "java-interview-quiz",
"version": "1.0.1",
"description": "Quiz for java-interview",
"private": true,
"scripts": {
"dev": "npx webpack --mode development",
"watch": "npx webpack --mode development --watch",
"prod": "npx webpack --mode production",
"start": "npx webpack serve --mode development"
},
"repository": {
"type": "git",
"url": "git://github.com/timmson/java-interview.git"
},
"author": "timmnson",
"license": "MIT",
"bugs": {
"url": "https://github.com/timmson/java-interview/issues"
},
"dependencies": {
"bootstrap": "^4.6.1",
"jquery": "^3.6.0",
"popper.js": "^1.16.1",
"vue": "^2.6.14"
},
"devDependencies": {
"@babel/preset-env": "^7.23.8",
"babel-loader": "^9.1.3",
"babel-polyfill": "^6.26.0",
"css-loader": "^6.9.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss-loader": "^7.3.4",
"sass-loader": "^13.3.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "4.15.1"
}
}