-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.43 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.43 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
{
"name": "javascriptprofessional-v2",
"version": "1.0.0",
"description": "radif.ru",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/radif-ru/JavaScriptProfessional-v2.git"
},
"author": "radif.ru",
"license": "ISC",
"bugs": {
"url": "https://github.com/radif-ru/JavaScriptProfessional-v2/issues"
},
"homepage": "https://github.com/radif-ru/JavaScriptProfessional-v2#readme",
"dependencies": {
"core-js": "^3.11.2",
"express": "^4.17.1",
"jquery-ui": "^1.13.0",
"owl.carousel": "^2.3.4",
"vue": "^3.0.11"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.0",
"@webpack-cli/generators": "^2.0.0",
"babel-loader": "^8.2.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"css-loader": "^5.2.4",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^5.3.1",
"terser-webpack-plugin": "^5.1.1",
"vue-loader": "^15.9.6",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry"
}
]
]
}
}